博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CGContextAddLines和CGContextAddLineToPoint在线条半透明时候的区别
阅读量:6227 次
发布时间:2019-06-21

本文共 1613 字,大约阅读时间需要 5 分钟。

这两种都可以用来画线,前一种将整条线加入后画出,后一种对每个点进行和前一个点的连线。

 
sample1

-(void)drawLine:(YJLines *)line{

    int count = [line.points count];

    CGPoint addLines[count];

    for (int j=0; j< [line.points count]; j++) 

    {

        CGPoint point = CGPointFromString((NSString *)[line.points objectAtIndex:j]);

        addLines[j].x = point.x;

        addLines[j].y = point.y;

    }

    CGContextRef context = UIGraphicsGetCurrentContext();

    CGContextSetLineJoin(context, kCGLineJoinRound);

    CGContextSetLineCap(context , kCGLineCapRound);

    CGContextSetBlendMode(context, kCGBlendModeNormal);

    CGContextBeginPath(context);

    CGContextAddLines(context, addLines, count);

    CGContextSetLineWidth(context, line.lineWidth);

    CGContextSetAlpha(context, line.lineAlpha);

    CGContextSetStrokeColorWithColor(context, line.lineColor.CGColor);

    CGContextStrokePath(context);

}

 
sample2:

- (void) contextDrawFrom: (CGPoint)last toPoint:(CGPoint)current withLine:(YJLines *)ln {

    CGContextRef context = UIGraphicsGetCurrentContext();

//    CGContextSetMiterLimit(context, 0.5);

    CGContextSetLineJoin(context, kCGLineJoinRound);

    CGContextSetLineCap(context , kCGLineCapRound);

    CGContextSetBlendMode(context, kCGBlendModeNormal);

    CGContextBeginPath(context);

    CGContextMoveToPoint(context, last.x, last.y);

    CGContextAddLineToPoint(context, current.x, current.y);

    CGContextSetLineWidth(context, ln.lineWidth);

    CGContextSetAlpha(context, ln.lineAlpha);

    CGContextSetStrokeColorWithColor(context, ln.lineColor.CGColor);

    CGContextStrokePath(context);

}

 
AddLineToPoint实现方式在线条alpha为1,即不透明的时候和AddLines一样,而且是实时画线。
但是当线条半透明的时候,AddLines在一条线自身重叠时不会透明度重叠。
而AddLineToPoint却会导致透明度重叠,且move touch的点出也会出现透明度重叠,会显示成点和点之间透明度正确,点上不透明的问题。

转载地址:http://znjna.baihongyu.com/

你可能感兴趣的文章
PHP会员找回密码功能实现实例介绍
查看>>
iPhone 6 屏幕揭秘
查看>>
一年成为Emacs高手(像神一样使用编辑器)
查看>>
WPF使用扩展屏幕
查看>>
透过【百度地图API】分析双闭包问题
查看>>
iis配置网址(主机名)
查看>>
禁止IE7的页面缩放功能
查看>>
把DATATABLE,DS中的内容用HTML的方式显示
查看>>
了解SQL Server锁争用:NOLOCK 和 ROWLOCK 的秘密
查看>>
聊聊单元測试(一)——EasyMock
查看>>
关于Git的礼节
查看>>
使用 Chrome 来调试你的 Android App
查看>>
jQuery之Deferred对象详解
查看>>
Windows 设置时间同步
查看>>
VS2010 调试C++项目 fatal error LNK1123 错误解决办法
查看>>
EBS OAF 开发中的OAMessageRadioGroup控件
查看>>
调整linux的时钟
查看>>
ObjectOutputStream和ObjectInputStream
查看>>
博客增加二维码功能
查看>>
static作用
查看>>