欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

iOS 压缩上传图片

程序员文章站 2022-03-27 19:53:13
...

上传较大图片,可对质量进行压缩;压缩后和原图基本上没有什么区别(大图上传耗时,多张一起上传也容易error);

+ (NSData *)compressionImage:(UIImage *)image {
    NSData *data = UIImageJPEGRepresentation(image, 1.0);
    if (data.length > 1024*1024) {
        if (data.length > 10240*1024) {       ///< 10M以及以上
            data = UIImageJPEGRepresentation(image, 0.1); ///< 压缩之后1M~
        } else if (data.length > 5120*1024){  ///< 5M~10M
            data = UIImageJPEGRepresentation(image, 0.2); ///< 压缩之后1M~2M
        } else if (data.length > 2048*1024){  ///< 2M~5M
            data = UIImageJPEGRepresentation(image, 0.4); ///< 压缩之后0.8M~2M
        } else if (data.length > 1024*1024) { ///< 1M
            data = UIImageJPEGRepresentation(image, 0.8); ///< 压缩之后0.8M
        } else {
            ///< 1M以下不压缩
        }
    }
    return data;
}
相关标签: 图片压缩 上传