如何尽可能减小UIImage的大小

发布于 2024-09-02 09:02:23 字数 359 浏览 2 评论 0原文

我正在使用以下代码来调整图像大小。

正确调整 UIImage 大小

我使用插值质量作为 kCGInterpolationLow。

然后我使用 UIImageJPEGRepresentation(image,0.0) 来获取该图像的 NSData。

它的大小仍然有点高,大约 100kb。当我通过网络发送它时。我可以进一步减少吗?如果我要减少更多,我该怎么办?

谢谢和亲切的问候,

I am using following code to resize the image.

Resize a UIImage Right Way

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

幸福%小乖 2024-09-09 09:02:23

您对图像进行压缩并将图像数据存储为 NSData 格式。该函数是

UIImageJPEGRepresentation(UIImage * _Nonnull image, CGFloat compressionQuality);

示例:

NSData *objImgData = UIImageJPEGRepresentation(objImg,1.0);

you image compress and image data stroed NSData format. The function is

UIImageJPEGRepresentation(UIImage * _Nonnull image, CGFloat compressionQuality);

Example:

NSData *objImgData = UIImageJPEGRepresentation(objImg,1.0);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文