如何在iPhone中保存缩放后的图像

发布于 2024-11-07 21:08:48 字数 404 浏览 0 评论 0原文

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

我正在图像视图中显示它。

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

但我想要访问缩放后的图像。任何人都可以帮助我如何保存和获取缩放后的图像。 这里这个CGAffineTransformMakeScale(-1.0, 1.0)方法不会对图像产生影响。

Thanks in advance.
I used CGAffineTransformMakeScale(-1.0, 1.0) tranform on an image normal image
And i got the image scale image like this.

I am displaying that in an imageview.

Now, if i try to access that image and display in another imageview it is displaying normally like first image.

But i want the scaled image to access. Can any one help me how to save and get the scaled image.
Here this CGAffineTransformMakeScale(-1.0, 1.0) method will not effect on image.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冧九 2024-11-14 21:08:48

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

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

The following method helps to scale as well as flip the image

UIImage *newImage = [UIImage imageWithCGImage:oldImage.CGImage scale:1.0 orientation: UIImageOrientationUpMirrored];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文