1

我有从 UIImageView继承的 Canvas 类(在背景设置图像 background.png),并且在方法 touchesMoved 中我绘制了某种颜色的手势:

UITouch *touch = [touches anyObject];
CGPoint currentLocation = [touch locationInView:self];  

UIGraphicsBeginImageContext(self.frame.size); 
CGContextRef ctx = UIGraphicsGetCurrentContext();  

[self.image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];
CGContextSetLineCap(ctx, kCGLineCapRound);
CGContextSetLineWidth(ctx, width);
CGContextSetRGBStrokeColor(ctx, red, green, blue, alpha);
CGContextBeginPath(ctx);
CGContextMoveToPoint(ctx, location.x, location.y);
CGContextAddLineToPoint(ctx, currentLocation.x, currentLocation.y);
CGContextStrokePath(ctx);
self.image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

location = currentLocation;

我有下面的 ERASE 按钮,如何清除画布的上下文但将 background.png 保留为背景,只删除用户使用触摸绘制的内容(我有属性画布)?

4

1 回答 1

2

您可以在图像视图上绘制一个透明矩形,如下所示:

CoreGraphics:图像透明背景

于 2012-06-26T20:24:48.013 回答