1

チョークのように線を引きたい。そして、線のエッジがかすんでいます。黒板にチョークで描くのと同じように。

どうすればこれを入手できますか? さて、画像を使って線を引いてみましたが、かすれていないので黒板に描いたようには見えません。いくつかの提案をお願いします。

- (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();

出力

チョークパターンイメージ

4

0 に答える 0