在第三个 imageview 上添加了 2 个 imageview 现在想要将第三个 imageviews 图像转换为实际图像

发布于 2024-10-05 19:20:31 字数 586 浏览 2 评论 0原文

我有 3 个图像视图,通过一键触摸,我已将这些图像添加到第三个图像视图中,完成了类似的操作

-(void) loadView
{
 [super loadView];
 [self.view addSubview:wormimage];
 [self.view addSubview:appleimage];
 [self.view addSubview:finalimage];
 [self.view addSubview:saveButton];
 [self.view addSubview:btn];
 [appleimage addSubview:wormimage];
}

,这是按钮触摸方法

-(void) addImage
{
 [finalimage addSubview:appleimage];
}

现在我想知道的是,第三个图像视图包含 2 个图像视图(appleimage 和 worm)图像) 我不知道的是如何将其转换为整个图像本身,必须使用什么才能做到这一点,按钮触摸的最终输出必须是图像,图像的扩展名并不重要。

如何将整个视图转换为图像并将其保存到 iPhone 的图库中?

I am having 3 image views and on one button touch I have added those images to the 3rd image view done something like this

-(void) loadView
{
 [super loadView];
 [self.view addSubview:wormimage];
 [self.view addSubview:appleimage];
 [self.view addSubview:finalimage];
 [self.view addSubview:saveButton];
 [self.view addSubview:btn];
 [appleimage addSubview:wormimage];
}

and this is the button touch method

-(void) addImage
{
 [finalimage addSubview:appleimage];
}

Now what I want know is that the 3rd imageview contains 2 image view (appleimage and worm image)
what I don't know is how this can be converted into an entire image itself, what has to be used in order to do that, the final output on the button touch must be an image, extension of the image doesn't matter.

How can I convert the entire view into an image and save them into the gallery of the iPhone?

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

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

发布评论

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

评论(1

蓝海似她心 2024-10-12 19:20:31

试试这个:

UIGraphicsBeginImageContext(size)

//Draw the View that you wanted

UIImage *image = UIGraphicsGetImageFromCurrentImageContext()

UIGraphicsEndImageContext

Try this:

UIGraphicsBeginImageContext(size)

//Draw the View that you wanted

UIImage *image = UIGraphicsGetImageFromCurrentImageContext()

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