提前致谢。
我在图片上使用CGAffineTransformMakeScale(-1.0, 1.0)
转换
我得到了像这样的图像。
我在imageview中显示它。
现在,如果我尝试访问该图像并在另一个图像视图中显示,它通常会像第一张图像一样显示。
但我希望缩放图像可以访问。任何人都可以帮我如何保存并获得缩放图像。
这里CGAffineTransformMakeScale(-1.0, 1.0)
方法不会对图像产生影响。
答案 0 :(得分:1)
以下方法有助于缩放和翻转图像
UIImage *newImage = [UIImage imageWithCGImage:oldImage.CGImage scale:1.0 orientation: UIImageOrientationUpMirrored];