我必须简单地裁剪图像。但是在裁剪后保存的图像质量不如原始图像。
当我将它上传到服务器时。服务器管理员告诉我你的图片是压缩的 .jpg
有什么方法可以提高裁剪图像的质量?
我做得对吗?
谢谢
代码 :
CGRect rect = [mImageView bounds];
UIGraphicsBeginImageContextWithOptions(rect.size,YES,0.0f);
CGContextRef context = UIGraphicsGetCurrentContext();
[self.view.layer renderInContext:context];
UIImage *capturedImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(capturedImage, nil, nil, nil);///save image in phone