IOS开发之图像压缩的操作方法

来源:爱站网时间:2020-12-12编辑:网友分享
开发网站的时候,上传图片是非常正常的操作,而这些图片需要上传到我们发服务器再进行操作,有时候可能会造成服务器的负担而失败,今天爱站技术频道小编就来给大家说说IOS开发之图像压缩的操作方法。

开发网站的时候,上传图片是非常正常的操作,而这些图片需要上传到我们发服务器再进行操作,有时候可能会造成服务器的负担而失败,今天爱站技术频道小编就来给大家说说IOS开发之图像压缩的操作方法。

两种压缩图片的方法:压缩图片质量(Quality),压缩图片尺寸(Size)。

压缩图片质量

NSData *data = UIImageJPEGRepresentation(image, compression);
UIImage *resultImage = [UIImage imageWithData:data];

通过 UIImage 和 NSData 的相互转化,减小 JPEG 图片的质量来压缩图片。UIImageJPEGRepresentation:: 第二个参数 compression 取值 0.0~1.0,值越小表示图片质量越低,图片文件自然越小。

压缩图片尺寸

UIGraphicsBeginImageContext(size);
[image drawInRect:CGRectMake(0, 0, size.width, size.height)];
resultImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

给定所需的图片尺寸 size,resultImage 即为原图 image 绘制为 size 大小的图片。

压缩图片使图片文件小于指定大小

如果对图片清晰度要求不高,要求图片的上传、下载速度快的话,上传图片前需要压缩图片。压缩到什么程度要看具体情况,但一般会设定一个图片文件最大值,例如 100 KB。可以用上诉两种方法来压缩图片。假设图片转化来的 NSData 对象为 data,通过data.length即可得到图片的字节大小。

压缩图片质量

比较容易想到的方法是,通过循环来逐渐减小图片质量,直到图片稍小于指定大小(maxLength)。

+ (UIImage *)compressImageQuality:(UIImage *)image toByte:(NSInteger)maxLength {
 CGFloat compression = 1;
 NSData *data = UIImageJPEGRepresentation(image, compression);
 while (data.length > maxLength && compression > 0) {
  compression -= 0.02;
  data = UIImageJPEGRepresentation(image, compression); // When compression less than a value, this code dose not work
 }
 
 UIImage *resultImage = [UIImage imageWithData:data];
 return resultImage;
}

这样循环次数多,效率低,耗时长。

可以通过二分法来优化。

+ (UIImage *)compressImageQuality:(UIImage *)image toByte:(NSInteger)maxLength {
 CGFloat compression = 1;
 NSData *data = UIImageJPEGRepresentation(image, compression);
 if (data.length  maxLength) {
   max = compression;
  } else {
   break;
  }
 }
 UIImage *resultImage = [UIImage imageWithData:data];
 return resultImage;
}

当图片大小小于 maxLength,大于 maxLength * 0.9 时,不再继续压缩。最多压缩 6 次,1/(2^6) = 0.015625

压缩图片尺寸

与之前类似,比较容易想到的方法是,通过循环逐渐减小图片尺寸,直到图片稍小于指定大小(maxLength)。具体代码省略。同样的问题是循环次数多,效率低,耗时长。可以用二分法来提高效率,具体代码省略。这里介绍另外一种方法,比二分法更好,压缩次数少,而且可以使图片压缩后刚好小于指定大小(不只是 maxLength * 0.9)。

+ (UIImage *)compressImageSize:(UIImage *)image toByte:(NSUInteger)maxLength {
 UIImage *resultImage = image;
 NSData *data = UIImageJPEGRepresentation(resultImage, 1);
 NSUInteger lastDataLength = 0;
 while (data.length > maxLength && data.length != lastDataLength) {
  lastDataLength = data.length;
  CGFloat ratio = (CGFloat)maxLength / data.length;
  CGSize size = CGSizeMake((NSUInteger)(resultImage.size.width * sqrtf(ratio)), (NSUInteger)(resultImage.size.height * sqrtf(ratio))); // Use NSUInteger to prevent white blank
  UIGraphicsBeginImageContext(size);
  // Use image to draw (drawInRect:), image is larger but more compression time
  // Use result image to draw, image is smaller but less compression time
  [resultImage drawInRect:CGRectMake(0, 0, size.width, size.height)];
  resultImage = UIGraphicsGetImageFromCurrentImageContext();
  UIGraphicsEndImageContext();
  data = UIImageJPEGRepresentation(resultImage, 1);
 }
 return resultImage;
}

[resultImage drawInRect:CGRectMake(0, 0, size.width, size.height)];是用新图 resultImage 绘制,也可以用原图 image 来绘制。用原图绘制,压缩后图片更接近指定大小,但是压缩次数较多,耗时较长。一张大小为 6064 KB 的图片,压缩图片尺寸,原图绘制与新图绘制结果如下

 

指定大小(KB) 原图绘制压缩后大小(KB) 原图绘制压缩次数 新图绘制压缩后大小(KB) 新图绘制压缩次数
500 498 6 498 3
300 299 4 296 3
100 99 5 98 3
50 49 6 48 3

两种绘制方法压缩后大小很接近,与指定大小也很接近,但原图绘制压缩次数可达到新图绘制压缩次数的两倍。建议使用新图绘制,减少压缩次数。压缩后图片明显比压缩质量模糊。

需要注意的是绘制尺寸的代码CGSize size = CGSizeMake((NSUInteger)(resultImage.size.width * sqrtf(ratio)), (NSUInteger)(resultImage.size.height * sqrtf(ratio)));,每次绘制的尺寸 size,要把宽 width 和 高 height 转换为整数,防止绘制出的图片有白边。

压缩图片尺寸可以使图片小于指定大小,但会使图片明显模糊(比压缩图片质量模糊)。

两种图片压缩方法结合

如果要保证图片清晰度,建议选择压缩图片质量。如果要使图片一定小于指定大小,压缩图片尺寸可以满足。对于后一种需求,还可以先压缩图片质量,如果已经小于指定大小,就可得到清晰的图片,否则再压缩图片尺寸。

+ (UIImage *)compressImage:(UIImage *)image toByte:(NSUInteger)maxLength {
 // Compress by quality
 CGFloat compression = 1;
 NSData *data = UIImageJPEGRepresentation(image, compression);
 if (data.length  maxLength) {
   max = compression;
  } else {
   break;
  }
 }
 UIImage *resultImage = [UIImage imageWithData:data];
 if (data.length  maxLength && data.length != lastDataLength) {
  lastDataLength = data.length;
  CGFloat ratio = (CGFloat)maxLength / data.length;
  CGSize size = CGSizeMake((NSUInteger)(resultImage.size.width * sqrtf(ratio)), (NSUInteger)(resultImage.size.height * sqrtf(ratio))); // Use NSUInteger to prevent white blank
  UIGraphicsBeginImageContext(size);
  [resultImage drawInRect:CGRectMake(0, 0, size.width, size.height)];
  resultImage = UIGraphicsGetImageFromCurrentImageContext();
  UIGraphicsEndImageContext();
  data = UIImageJPEGRepresentation(resultImage, compression);
 }
 
 return resultImage;
}

以上就是爱站技术频道小编为大家简单介绍的IOS开发之图像压缩的操作方法,如果还有疑问的话可以反馈到小编这里来。

上一篇:如何在IOS中处理按钮单击事件

下一篇:IOS开发之获取当前时间戳的操作步骤

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载