如何在iOS中绘制像粉笔绘图笔划一样的线条?

时间:2013-06-18 09:08:39

标签: iphone ios drawing core-graphics quartz-graphics

我想画线,就像粉笔一样。线的边缘很微弱。就像在黑板上画粉笔一样。

我如何得到这个?现在,我使用图像画线,但它看起来不像是在黑板上画画,因为线条并不暗淡。请给我一些建议。

- (void)drawRect:(CGRect)rect方法中的我的代码:

 UIGraphicsBeginImageContext(self.bounds.size);
[curImage  drawInRect:self.bounds];
CGContextRef context = UIGraphicsGetCurrentContext();
 [self.layer renderInContext:context];

  UIImage *imgType = [UIImage imageWithContentsOfFile:[[NSBundle mainBundle]pathForResource:self.strFile ofType:@"png"]];
 [imgType drawInRect:CGRectMake(currentPoint.x, currentPoint.y, 40, 40)];

 curImage = UIGraphicsGetImageFromCurrentImageContext();
 [curImage retain];
UIGraphicsEndImageContext();

Output

Chalk Pattern Image

0 个答案:

没有答案