UIImage UIImageJPEGRepresentation 对 UIImage 安全
我需要执行 UIImageJPEGRepresentation 方法,然后将其保存到文件中,而不是保存到 UIImage 中。请帮忙..
I need to perform UIImageJPEGRepresentation method and after that save it NOT to file, I need to save it to UIImage. Help please..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以使用这个:
you can use this:
我不知道为什么你想从 UIImage 转到 jpeg 数据,然后再回到 UIImage,但
[UIImage imageWithData:jpegdata]
应该这样做。I have no idea why you are wanting to go from a UIImage to jpeg data and then right back to a UIImage, but
[UIImage imageWithData:jpegdata]
should do it.呃?
UIImageJPEGRepresentation
将图像转换为 JPEG 数据...Eh?
UIImageJPEGRepresentation
converts an image to JPEG data...