如何尽可能减小UIImage的大小
我正在使用以下代码来调整图像大小。
我使用插值质量作为 kCGInterpolationLow。
然后我使用 UIImageJPEGRepresentation(image,0.0) 来获取该图像的 NSData。
它的大小仍然有点高,大约 100kb。当我通过网络发送它时。我可以进一步减少吗?如果我要减少更多,我该怎么办?
谢谢和亲切的问候,
I am using following code to resize the image.
And I use interpolation quality as kCGInterpolationLow.
And then I use UIImageJPEGRepresentation(image,0.0) to get the NSData of that image.
Still its a little bit high in size around 100kb. when I send it over the network. Can I reduce it further. If I am to reduce it more what could I do ?
Thanks and Kind Regards,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您对图像进行压缩并将图像数据存储为 NSData 格式。该函数是
示例:
you image compress and image data stroed NSData format. The function is
Example: