我正在使用CGContext在UIImageView上绘制自由手线。但是当我使用
时UIGraphicsBeginImageContext(self.frame.size);
CGContextRef context = UIGraphicsGetCurrentContext();
使用imageView的大小在Imageview中绘制图像,以便将原始图像大小调整为imageView的大小。而且我必须将图像大小调整为原始大小,同时这样做会失去其质量。如何在imageView上直接在图像上绘图?此外,我必须使用imageview来适应视图中的图像,以便我可以在其上绘制线条。请帮助!!!
答案 0 :(得分:6)
您可以使用顶部的线重新渲染图像
- (UIImage *)renderImage:(UIImage *)image atSize:(CGSize)size
{
UIGraphicsBeginImageContext(size);
[image drawInRect:CGRectMake(0.0, 0.0, size.width, size.height)];
//Draw your lines here
UIImage *newImage=UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return newImage;
}
虽然取决于您对应用的操作,但这可能不是最佳方法。 希望这有帮助。