18

我正在尝试使用以下代码擦除图像

 CGColorRef strokeColor = [UIColor whiteColor].CGColor;

 UIGraphicsBeginImageContext(imgForeground.frame.size);

 CGContextRef context = UIGraphicsGetCurrentContext();
 [imgForeground.image drawInRect:CGRectMake(0, 0, imgForeground.frame.size.width, imgForeground.frame.size.height)];

 CGContextSetLineCap(context, kCGLineCapRound);
 CGContextSetLineWidth(context, 10);

 CGContextSetStrokeColorWithColor(context, strokeColor);
 CGContextSetBlendMode(context, kCGBlendModeClear);

 CGContextBeginPath(context);
 CGContextMoveToPoint(context, lastPoint.x, lastPoint.y);
 CGContextAddLineToPoint(context, currentPoint.x, currentPoint.y);
 CGContextStrokePath(context);

 imgForeground.image  = UIGraphicsGetImageFromCurrentImageContext();
 UIGraphicsEndImageContext();

但我只是发现 Image 由于drawInRect而失去了分辨率。

前 后

4

1 回答 1

45

您应该使用UIGraphicsBeginImageContextWithOptions而不是UIGraphicsBeginImageContext,以便可以指定比例因子。

例如,这将使用设备主屏幕的比例因子:

UIGraphicsBeginImageContextWithOptions(imgForeground.frame.size, NO, 0);
于 2013-02-06T12:41:29.230 回答