我想在绘制这张图片中的右线时具有模糊效果:
目前,我正在使用以下代码进行绘图,但这仅在左侧绘制图片:
CGContextSetLineWidth(currentContext, thickness);
CGContextSetLineCap(currentContext, kCGLineCapRound);
CGContextBeginPath(currentContext);
CGContextMoveToPoint(currentContext, x, y);
CGContextAddLineToPoint(currentContext, x, y);
CGContextMoveToPoint(currentContext, x, y);
CGContextStrokePath(currentContext);
请问有什么想法吗?
问候, 亚历山大