0

我正在创建一个绘图应用程序。其中一个特点是多色线条绘制。它应该像用户触摸屏幕并在其上画一条线一样工作。线条的颜色平滑地变化。就像那个http://www.examples.pavelgatilov.com/Screen%20Shot%202013-09-22%20at%208.37.42%20PM.png

我尝试了几种方法,但都不走运。

我的画线方法如下:

- (void) drawLineFrom:(CGPoint)from to:(CGPoint)to width:(CGFloat)width
{
self.drawColor = toolColor;
UIGraphicsBeginImageContext(self.frame.size);
CGContextRef ctx = UIGraphicsGetCurrentContext();
CGContextScaleCTM(ctx, 1.0f, -1.0f);
CGContextTranslateCTM(ctx, 0.0f, -self.frame.size.height);
if (drawImage != nil) {
    CGRect rect = CGRectMake(0.0f, 0.0f, self.frame.size.width, self.frame.size.height);
    CGContextDrawImage(ctx, rect, drawImage.CGImage);
}
CGContextSetLineCap(ctx, kCGLineCapRound);
CGContextSetLineWidth(ctx, width);
CGContextSetStrokeColorWithColor(ctx, self.drawColor.CGColor);
CGContextMoveToPoint(ctx, from.x, from.y);
CGContextAddLineToPoint(ctx, to.x, to.y);
CGContextStrokePath(ctx);
CGContextFlush(ctx);
drawImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
drawLayer.contents = (id)drawImage.CGImage;
}

谢谢你的帮助

4

1 回答 1

2

根据确切的颜色,它们如何变化以及您想要的效果/线路中的转弯会发生什么,您可能需要查看以下组合:

  • CGContextDrawLinearGradient对用户绘制的路径进行屏蔽。
  • colorWithPatternImage:
  • CGContextDrawLinearGradient绘制在另一层后面并将透明度绘制到顶层kCGBlendModeClear
于 2013-09-22T17:58:53.553 回答