詳解IOS圖片壓縮處理_IOS

來源:互聯網
上載者:User

前言

 1、確圖片的壓縮的概念:

“壓” 是指檔案體積變小,但是像素數不變,長寬尺寸不變,那麼品質可能下降。

“縮” 是指檔案的尺寸變小,也就是像素數減少,而長寬尺寸變小,檔案體積同樣會減小。

 

 2、圖片壓的處理

對於“壓”的功能,我們可以使用UIImageJPEGRepresentationUIImagePNGRepresentation方法實現,

如代碼:

//圖片壓- (void)_imageCompression{  UIImage *image = [UIImage imageNamed:@"HD"];  //第一個參數是圖片對象,第二個參數是壓的係數,其值範圍為0~1。  NSData * imageData = UIImageJPEGRepresentation(image, 0.7);  UIImage * newImage = [UIImage imageWithData:imageData];}

2.1關於PNG和JPEG格式壓縮

UIImageJPEGRepresentation函數需要兩個參數:圖片的引用和壓縮係數而UIImagePNGRepresentation只需要圖片引用作為參數.

UIImagePNGRepresentation(UIImage *image)要比UIImageJPEGRepresentation(UIImage* image, 1.0)返回的圖片資料量大很多.

同樣的一張照片, 使用UIImagePNGRepresentation(image)返回的資料量大小為200K,而 UIImageJPEGRepresentation(image, 1.0)返回的資料量大小隻為150K,比前者少了50K.

如果對圖片的清晰度要求不是極高,建議使用UIImageJPEGRepresentation,可以大幅度降低圖片資料量.比如,剛才拍攝的圖片,通過調用UIImageJPEGRepresentation(image, 1.0)讀取資料時,返回的資料大小為140K,但更改壓縮係數為0.5再讀取資料時,返回的資料大小隻有11K,大大壓縮了圖片的資料量,而且清晰度並沒有相差多少,圖片的品質並沒有明顯的降低。因此,在讀取圖片資料內容時,建議優先使用UIImageJPEGRepresentation,並可根據自己的實際使用情境,設定壓縮係數,進一步降低圖片資料量大小。

提示:壓縮係數不宜太低,通常是0.3~0.7,過小則可能會出現黑邊等。

3、圖片“縮”處理

通過[image drawInRect:CGRectMake(0, 0, targetWidth, targetHeight)]可以進行圖片“縮”的功能。

 

/** * 圖片壓縮到指定大小 * @param targetSize 靶心圖表片的大小 * @param sourceImage 源圖片 * @return 靶心圖表片 */ - (UIImage*)imageByScalingAndCroppingForSize:(CGSize)targetSize withSourceImage:(UIImage *)sourceImage{UIImage *newImage = nil;CGSize imageSize = sourceImage.size;CGFloat width = imageSize.width;CGFloat height = imageSize.height;CGFloat targetWidth = targetSize.width;CGFloat targetHeight = targetSize.height;CGFloat scaleFactor = 0.0;CGFloat scaledWidth = targetWidth;CGFloat scaledHeight = targetHeight;CGPoint thumbnailPoint = CGPointMake(0.0,0.0);if (CGSizeEqualToSize(imageSize, targetSize) == NO){  CGFloat widthFactor = targetWidth / width;  CGFloat heightFactor = targetHeight / height;  if (widthFactor > heightFactor)    scaleFactor = widthFactor; // scale to fit height  else    scaleFactor = heightFactor; // scale to fit width  scaledWidth= width * scaleFactor;  scaledHeight = height * scaleFactor;  // center the image  if (widthFactor > heightFactor)  {    thumbnailPoint.y = (targetHeight - scaledHeight) * 0.5;  }  else if (widthFactor < heightFactor)  {    thumbnailPoint.x = (targetWidth - scaledWidth) * 0.5;  }}UIGraphicsBeginImageContext(targetSize); // this will cropCGRect thumbnailRect = CGRectZero;thumbnailRect.origin = thumbnailPoint;thumbnailRect.size.width= scaledWidth;thumbnailRect.size.height = scaledHeight;[sourceImage drawInRect:thumbnailRect];newImage = UIGraphicsGetImageFromCurrentImageContext();if(newImage == nil)  NSLog(@"could not scale image");//pop the context to get back to the defaultUIGraphicsEndImageContext(); return newImage;}

這個UIImageJPEGRepresentation(image, 0.0),UIImagePNGRepresentation(image); 是1的功能。
這個 [sourceImage drawInRect:CGRectMake(0,0,targetWidth, targetHeight)] 是2的功能。

總結

所以,這倆得結合使用來滿足需求,不然你一味的用1,導致,圖片模糊的不行,但是尺寸還是很大。
以上就是在IOS中壓縮圖片處理的詳細介紹及執行個體,希望對大家學習IOS開發有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.