CGContextAddLines和CGContextAddLineToPoint在线条半透明时候的区别

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

 
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://www.cnblogs.com/pengyingh/articles/2403225.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值