iOS 图片压缩UIImage方法扩展

http://blog.csdn.net/justinjing0612/article/details/8751269

iOS自带的提供了一个API如下

[html] view plaincopy

  1. NSData *UIImageJPEGRepresentation(UIImage *image, CGFloat compressionQuality);

在Iphone上有两种读取图片数据的简单方法: UIImageJPEGRepresentation和UIImagePNGRepresentation. UIImageJPEGRepresentation函数需要两个参数:图片的引用和压缩系数.而UIImagePNGRepresentation只需要图片引用作为参数.通过在实际使用过程中,比较发现: UIImagePNGRepresentation(UIImage* image) 要比UIImageJPEGRepresentation(UIImage* image, 1.0) 返回的图片数据量大很多.譬如,同样是读取摄像头拍摄的同样景色的照片, UIImagePNGRepresentation()返回的数据量大小为199K ,而 UIImageJPEGRepresentation(UIImage* image, 1.0)返回的数据量大小只为140KB,比前者少了50多KB.如果对图片的清晰度要求不高,还可以通过设置 UIImageJPEGRepresentation函数的第二个参数,大幅度降低图片数据量.譬如,刚才拍摄的图片, 通过调用UIImageJPEGRepresentation(UIImage* image, 1.0)读取数据时,返回的数据大小为140KB,但更改压缩系数后,通过调用UIImageJPEGRepresentation(UIImage* image, 0.5)读取数据时,返回的数据大小只有11KB多,大大压缩了图片的数据量 ,而且从视角角度看,图片的质量并没有明显的降低.因此,在读取图片数据内容时,建议优先使用UIImageJPEGRepresentation,并可根据自己的实际使用场景,设置压缩系数,进一步降低图片数据量大小。

[html] view plaincopy

  1. UIImage *imageNew = [info objectForKey:@"UIImagePickerControllerOriginalImage"];
  2. imageNew = [self imageWithImage:imageNew scaledToSize:CGSizeMake(100, 100)];
  3. NSData *imageData = UIImageJPEGRepresentation(imageNew, 0.0001);
  4. m_selectImage = [UIImage imageWithData:imageData];

.h具体code

[html] view plaincopy

  1. #import <Foundation/Foundation.h>
  2. @interface UIImage (UIImageExt)
  3. - (UIImage *)scaleToSize:(UIImage *)img size:(CGSize)size;
  4. - (UIImage *)imageByScalingAndCroppingForSize:(CGSize)targetSize;
  5. @end

.m具体code

[html] view plaincopy

    1. #import "UIImageExt.h"
    2. @implementation UIImage (UIImageExt)
    3. - (UIImage *)scaleToSize:(UIImage *)img size:(CGSize)size{
    4. // 创建一个bitmap的context
    5. // 并把它设置成为当前正在使用的context
    6. UIGraphicsBeginImageContext(size);
    7. // 绘制改变大小的图片
    8. [img drawInRect:CGRectMake(0, 0, size.width, size.height)];
    9. // 从当前context中创建一个改变大小后的图片
    10. UIImage* scaledImage = UIGraphicsGetImageFromCurrentImageContext();
    11. // 使当前的context出堆栈
    12. UIGraphicsEndImageContext();
    13. // 返回新的改变大小后的图片
    14. return scaledImage;
    15. }
    16. - (UIImage*)imageByScalingAndCroppingForSize:(CGSize)targetSize
    17. {
    18. UIImage *sourceImage = self;
    19. UIImage *newImage = nil;
    20. CGSize imageSize = sourceImage.size;
    21. CGFloat width = imageSize.width;
    22. CGFloat height = imageSize.height;
    23. CGFloat targetWidth = targetSize.width;
    24. CGFloat targetHeight = targetSize.height;
    25. CGFloat scaleFactor = 0.0;
    26. CGFloat scaledWidth = targetWidth;
    27. CGFloat scaledHeight = targetHeight;
    28. CGPoint thumbnailPoint = CGPointMake(0.0,0.0);
    29. if (CGSizeEqualToSize(imageSize, targetSize) == NO)
    30. {
    31. CGFloat widthFactor = targetWidth / width;
    32. CGFloat heightFactor = targetHeight / height;
    33. if (widthFactor > heightFactor)
    34. scaleFactor = widthFactor; // scale to fit height
    35. else
    36. scaleFactor = heightFactor; // scale to fit width
    37. scaledWidth  = width * scaleFactor;
    38. scaledHeight = height * scaleFactor;
    39. // center the image
    40. if (widthFactor > heightFactor)
    41. {
    42. thumbnailPoint.y = (targetHeight - scaledHeight) * 0.5;
    43. }
    44. else
    45. if (widthFactor < heightFactor)
    46. {
    47. thumbnailPoint.x = (targetWidth - scaledWidth) * 0.5;
    48. }
    49. }
    50. UIGraphicsBeginImageContext(targetSize); // this will crop
    51. CGRect thumbnailRect = CGRectZero;
    52. thumbnailRect.origin = thumbnailPoint;
    53. thumbnailRect.size.width  = scaledWidth;
    54. thumbnailRect.size.height = scaledHeight;
    55. [sourceImage drawInRect:thumbnailRect];
    56. newImage = UIGraphicsGetImageFromCurrentImageContext();
    57. if(newImage == nil)
    58. NSLog(@"could not scale image");
    59. //pop the context to get back to the default
    60. UIGraphicsEndImageContext();
    61. return newImage;
    62. }
    63. @end
时间: 2024-11-08 20:23:27

iOS 图片压缩UIImage方法扩展的相关文章

iOS 图片压缩

iOS的图片压缩,目前我在用的有两种: 一.在内存中压缩 需要消耗内存,如果图片较多,可能会造成crash //压缩图片质量   +(UIImage *)reduceImage:(UIImage *)image percent:(float)percent   {       NSData *imageData = UIImageJPEGRepresentation(image, percent);       UIImage *newImage = [UIImage imageWithData

IOS图片压缩

iPhone拍出来的照片一般大小在1-10M,我们在上传照片时,不可能上传如此大的图片到服务器,一般我们会对照片进行压缩. 常用的做法是,使用这个函数对图片压缩 UIImageJPEGRepresentation(UIImage * __nonnull image, CGFloat compressionQuality); 但这个函数有一个临界值,不能对图片无限制压缩,一般到当压缩比传入0.1已达到临界值了.这时如果我想把5M的图片压缩到50K是行不通的. 如果图太大,我们要求压缩的比例太大就不

iOS图片压缩上传

本文实例为大家分享了iOS实现压缩图片上传功能,供大家参考,具体内容如下 ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 7

iOS图片压缩处理

理解概念 首先,我们必须明确图片的压缩其实是两个概念: “压” 是指文件体积变小,但是像素数不变,长宽尺寸不变,那么质量可能下降. “缩” 是指文件的尺寸变小,也就是像素数减少,而长宽尺寸变小,文件体积同样会减小. 图片“压”处理 对于“压”的功能,我们可以使用UIImageJPEGRepresentation或UIImagePNGRepresentation方法实现,如: 1 2 3 NSData *imgData = UIImageJPEGRepresentation(image, 0.5)

Android 图片压缩的方法大全

public static Bitmap revitionImageSize(String path) throws IOException { BufferedInputStream in = new BufferedInputStream(new FileInputStream( new File(path))); BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds =

IOS图片压缩上传服务器终极解决方案

我最终才去的方案如下: /** * 动态发布图片压缩 * * @param source_image 原图image * @param maxSize 限定的图片大小 * * @return 返回处理后的图片 */ - (NSData *)resetSizeOfImageData:(UIImage *)source_image maxSize:(NSInteger)maxSize; 先调整分辨率,分辨率可以自己设定一个值,大于的就缩小到这分辨率,小余的就保持原本分辨率.然后在根据最终大小来设置压

[iOS]图片压缩&amp;保存View为内容Img

1.图片的压缩 封装类方法 + (UIImage*)imageWithImageSimple:(UIImage*)image scaledToSize:(CGSize)newSize { // Create a graphics image context UIGraphicsBeginImageContext(newSize); // Tell the old image to draw in this new context, with the desired // new size [im

迅捷在线压缩将JPG图片压缩的方法

将我们的图片在线压缩的方法有很多种,图片的格式也分为很多种,我们需要将jpg格式的图片进行压缩,那么我们是怎么进行在线压缩的呢?下面就让小编简单的给大家介绍一下.步骤一:等准备好之后就可以直接进入到迅捷在线压缩的网站中: 步骤二:找到在线图片压缩,进入进行压缩设置,将图片的压缩质量和压缩类型进行设置: 步骤三:设置完成之后就可以进行文件的上传,将文件直接拖拽进行上传或是进行直接打开,上传完成之后就可以进行文件的压缩,点击开始压缩即可: 步骤四:压缩是需要一定的时间的,我们需要耐心的等待一段时间等

PHP图片压缩解决方法

//代码如下,我自己并没有验证,先收藏起来 header("Content-type: image/jpeg"); $file = "10k.jpg";$percent = 1.5; //图片压缩比list($width, $height) = getimagesize($file); //获取原图尺寸//缩放尺寸$newwidth = $width * $percent;$newheight = $height * $percent;$src_im = image