如何在 Objective C 中使用 NSData 存储图像
如何获取 UIImage 并将其存储为 NSData(以写入文件)?是否有一些明显的方法,或者有人可以提供代码片段?
提前致谢!
附言。我的下一个问题可能是获取当前屏幕图像的代码片段。到目前为止我看到的片段对于我的需要来说似乎是严重的过度杀伤力。
How do I take a UIImage and store it preferably as NSData (to write to a file)? Is there some obvious method out there, or could someone provide a code snippet?
Thanks in advance!
PS. My next question will probably be for a code snippet to capture the current screen image. The snippets I've seen so far appear to be serious overkill for what I need.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
UIImagePNGRepresentation()
或UIImageJPEGRepresentation()
序列化 UIImage。You can serialize a UIImage using
UIImagePNGRepresentation()
orUIImageJPEGRepresentation()
.