将图像保存到默认相机文件夹 - IOS

发布于 2024-12-18 11:31:23 字数 181 浏览 1 评论 0原文

我目前正在完成一个项目。但我还需要最后一件事,但不知道该怎么做。

我正在寻找一种将图像保存到默认文件夹(相机胶卷文件夹)的方法。我正在考虑制作一个按钮。因此,如果用户决定保存他的图像,他可以点击保存按钮。

如果重要的话,我有 4 个图像视图彼此重叠。是否可以将所有这些视图保存到一张图像中?

谢谢你,

I'm currently finishing a project. But there is one last thing I need and can't figure out how to do.

I'm looking for a way to save images to the default folder (camera roll folder). I was thinking of making a button. So if the user decides to save his image he can tap on the save button.

If it matters, I have 4 imageview on top of each other. Would it be possible to save all those view to one image?

Thank you,

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

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

发布评论

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

评论(1

枕头说它不想醒 2024-12-25 11:31:23

以下是将图像保存到相机胶卷的方法:

-(IBAction)savePhoto{
    UIImageWriteToSavedPhotosAlbum(myImageView.image ,nil, nil, nil);
}

Here is how to save an image to the camera roll:

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