iPhone 减小图像文件大小
有没有办法减少图像文件大小或原始 RGB 缓冲区?
实际上我有 RGB 缓冲区,它有 500KB,大小为 320X420。我尝试使用 UIimage 将它保存到磁盘,它达到了 240 KB。
根据图像大小,我希望它小于 50KB 左右。(损失质量是可以的)
这可能吗?
谢谢,
拉古
Is there anyway to reduce the Image file size or Raw RGB buffer ?
Actually I have RGB buffer which it has 500KB with 320X420 size.I tried to save it to disk using UIimage and it comes to 240 KB.
As per the image size, I want it to have less than 50KB or so.(loosing quality is OK)
Is it possible ?
Thanks,
Raghu
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅 Trevor Harmon 在主题。
See Trevor Harmon's excellent post on the subject.
240KB 大小听起来与未压缩的原始 RGB 图像数据完全相同 (320x420x3)。 iPhone 没有 PNG 或 JPEG 导出器吗?互联网上说使用 UIImageJPEGRepresentation 或 UIImagePNGRepresentation 和 NSData writeToFile。
The 240KB size sounds exactly like the raw RGB image data, uncompressed (320x420x3). Doesn't the iPhone have a PNG or JPEG exporter? The internet says to use UIImageJPEGRepresentation or UIImagePNGRepresentation and NSData writeToFile.