如何在 iPhone 中将多张图像保存为单个图像?

发布于 2024-11-17 02:46:44 字数 101 浏览 3 评论 0原文

我有一个应用程序,用户可以添加多个图像以作为子视图查看以显示完整的图像。现在我想在其他类的图像视图中显示完整的图像。我该怎么做,因为完整的图像只是另一个图像上的图像,而不是完整的单个图像。

I have an application where users add several images to view as sub views to show a complete image. Now i want to show that complete image in other class's image view.How can i do it because that complete image is just an image over another image and not a full single image.

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

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

发布评论

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

评论(2

水染的天色ゝ 2024-11-24 02:46:44

您可以通过编程方式获取视图中显示内容的完整图像。这是一个展示如何执行此操作的链接 http://www.icodeblog.com/ 2009/07/27/1188/

然后将图像传递给下一个控制器。

You can programmatically get the complete image of what is displayed on view. Here is a link to show how to do that http://www.icodeblog.com/2009/07/27/1188/

and then you pass the image to your next controller.

坐在坟头思考人生 2024-11-24 02:46:44
    UIGraphicsBeginImageContext(firstImage.size);
    [firstImage drawAtPoint:CGPointMake(0,0)];
    [secondImage drawAtPoint:CGPointMake(0,0)];

    UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    UIGraphicsBeginImageContext(firstImage.size);
    [firstImage drawAtPoint:CGPointMake(0,0)];
    [secondImage drawAtPoint:CGPointMake(0,0)];

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