如何在iPhone中保存缩放图像

时间:2011-05-19 07:50:56

标签: ios objective-c iphone uiimage

提前致谢。    我在图片normal image上使用CGAffineTransformMakeScale(-1.0, 1.0)转换  我得到了像这样的图像scale image

我在imageview中显示它。

现在,如果我尝试访问该图像并在另一个图像视图中显示,它通常会像第一张图像一样显示。

但我希望缩放图像可以访问。任何人都可以帮我如何保存并获得缩放图像。 这里CGAffineTransformMakeScale(-1.0, 1.0)方法不会对图像产生影响。

1 个答案:

答案 0 :(得分:1)

以下方法有助于缩放和翻转图像

UIImage *newImage = [UIImage imageWithCGImage:oldImage.CGImage scale:1.0 orientation: UIImageOrientationUpMirrored];