CGContext绘制图像

Pre*_*van 0 iphone cocoa-touch objective-c cgcontext ios

我正在使用CGContext在UIImageView上绘制自由的手线.但是当我使用时

UIGraphicsBeginImageContext(self.frame.size);
CGContextRef context = UIGraphicsGetCurrentContext();
Run Code Online (Sandbox Code Playgroud)

使用imageView的大小在Imageview中绘制图像,以便将原始图像大小调整为imageView的大小.而且我必须将图像大小调整为原始大小,同时这样做会失去其质量.如何在imageView上直接在图像上绘图?此外,我必须使用imageview来适应视图中的图像,以便我可以在其上绘制线条.请帮忙 !!!

str*_*ode 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;
}
Run Code Online (Sandbox Code Playgroud)

虽然取决于您对应用程序的操作,但这可能不是最好的方法.希望这有帮助.