我想画线,就像粉笔一样。线的边缘很微弱。就像在黑板上画粉笔一样。
我如何得到这个?现在,我使用图像画线,但它看起来不像是在黑板上画画,因为线条并不暗淡。请给我一些建议。
- (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();