iOS:将图像从图库复制到文档
有没有办法将图像从 iOS 画廊复制到应用程序的文档文件夹?
Is there a way to copy an image from iOS gallery to app`s documents folder?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法将图像从 iOS 画廊复制到应用程序的文档文件夹?
Is there a way to copy an image from iOS gallery to app`s documents folder?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
我不会发布代码,因为我不记得了。
首先从图库中获取 UIImage,然后将该图像转换为 NSData,然后将该 NSData 写入文档目录中的文件。
I won't post the code coz I dint remember it.
First get UIImage from the gallery then convert
that Image into NSData and then write that NSData
to a file in your document directory.