gpt4 book ai didi

ios - 在 iphone 中将相机/照片库图像文件大小减少到 100 KB 以下

转载 作者:可可西里 更新时间:2023-11-01 03:40:05 24 4
gpt4 key购买 nike

我想减少从 UIImagePickerController 获取的图像文件大小。我用这个方法

NSData *imageData = UIImageJPEGRepresentation(image, 0.1);

但它将 2.2 MB 的图像文件大小减少到 300 KB我希望我的图像文件大小小于 100 KB。

最佳答案

Apple 的文档状态:

The quality of the resulting JPEG image, expressed as a value from 0.0 to 1.0. The value 0.0 represents the maximum compression (or lowest quality) while the value 1.0 represents the least compression (or best quality).

并且由于压缩质量是 CGFloat,它支持十位以上的小数位。话虽如此,请尝试:

NSData *imageData = UIImageJPEGRepresentation(image, 0.032);

关于ios - 在 iphone 中将相机/照片库图像文件大小减少到 100 KB 以下,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14085055/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com