android下圖片壓縮

yangxi_001發表於2013-11-26

第一:我們先看下質量壓縮方法:

  1. private Bitmap compressImage(Bitmap image) {  
  2.   
  3.         ByteArrayOutputStream baos = new ByteArrayOutputStream();  
  4.         image.compress(Bitmap.CompressFormat.JPEG, 100, baos);//質量壓縮方法,這裡100表示不壓縮,把壓縮後的資料存放到baos中   
  5.         int options = 100;  
  6.         while ( baos.toByteArray().length / 1024>100) {  //迴圈判斷如果壓縮後圖片是否大於100kb,大於繼續壓縮          
  7.             baos.reset();//重置baos即清空baos   
  8.             image.compress(Bitmap.CompressFormat.JPEG, options, baos);//這裡壓縮options%,把壓縮後的資料存放到baos中   
  9.             options -= 10;//每次都減少10   
  10.         }  
  11.         ByteArrayInputStream isBm = new ByteArrayInputStream(baos.toByteArray());//把壓縮後的資料baos存放到ByteArrayInputStream中   
  12.         Bitmap bitmap = BitmapFactory.decodeStream(isBm, nullnull);//把ByteArrayInputStream資料生成圖片   
  13.         return bitmap;  
  14.     }  
private Bitmap compressImage(Bitmap image) {

		ByteArrayOutputStream baos = new ByteArrayOutputStream();
		image.compress(Bitmap.CompressFormat.JPEG, 100, baos);//質量壓縮方法,這裡100表示不壓縮,把壓縮後的資料存放到baos中
		int options = 100;
		while ( baos.toByteArray().length / 1024>100) {	//迴圈判斷如果壓縮後圖片是否大於100kb,大於繼續壓縮		
			baos.reset();//重置baos即清空baos
			image.compress(Bitmap.CompressFormat.JPEG, options, baos);//這裡壓縮options%,把壓縮後的資料存放到baos中
			options -= 10;//每次都減少10
		}
		ByteArrayInputStream isBm = new ByteArrayInputStream(baos.toByteArray());//把壓縮後的資料baos存放到ByteArrayInputStream中
		Bitmap bitmap = BitmapFactory.decodeStream(isBm, null, null);//把ByteArrayInputStream資料生成圖片
		return bitmap;
	}

第二:圖片按比例大小壓縮方法(根據路徑獲取圖片並壓縮):

  1. private Bitmap getimage(String srcPath) {  
  2.         BitmapFactory.Options newOpts = new BitmapFactory.Options();  
  3.         //開始讀入圖片,此時把options.inJustDecodeBounds 設回true了   
  4.         newOpts.inJustDecodeBounds = true;  
  5.         Bitmap bitmap = BitmapFactory.decodeFile(srcPath,newOpts);//此時返回bm為空   
  6.           
  7.         newOpts.inJustDecodeBounds = false;  
  8.         int w = newOpts.outWidth;  
  9.         int h = newOpts.outHeight;  
  10.         //現在主流手機比較多是800*480解析度,所以高和寬我們設定為   
  11.         float hh = 800f;//這裡設定高度為800f   
  12.         float ww = 480f;//這裡設定寬度為480f   
  13.         //縮放比。由於是固定比例縮放,只用高或者寬其中一個資料進行計算即可   
  14.         int be = 1;//be=1表示不縮放   
  15.         if (w > h && w > ww) {//如果寬度大的話根據寬度固定大小縮放   
  16.             be = (int) (newOpts.outWidth / ww);  
  17.         } else if (w < h && h > hh) {//如果高度高的話根據寬度固定大小縮放   
  18.             be = (int) (newOpts.outHeight / hh);  
  19.         }  
  20.         if (be <= 0)  
  21.             be = 1;  
  22.         newOpts.inSampleSize = be;//設定縮放比例   
  23.         //重新讀入圖片,注意此時已經把options.inJustDecodeBounds 設回false了   
  24.         bitmap = BitmapFactory.decodeFile(srcPath, newOpts);  
  25.         return compressImage(bitmap);//壓縮好比例大小後再進行質量壓縮   
  26.     }  
private Bitmap getimage(String srcPath) {
		BitmapFactory.Options newOpts = new BitmapFactory.Options();
		//開始讀入圖片,此時把options.inJustDecodeBounds 設回true了
		newOpts.inJustDecodeBounds = true;
		Bitmap bitmap = BitmapFactory.decodeFile(srcPath,newOpts);//此時返回bm為空
		
		newOpts.inJustDecodeBounds = false;
		int w = newOpts.outWidth;
		int h = newOpts.outHeight;
		//現在主流手機比較多是800*480解析度,所以高和寬我們設定為
		float hh = 800f;//這裡設定高度為800f
		float ww = 480f;//這裡設定寬度為480f
		//縮放比。由於是固定比例縮放,只用高或者寬其中一個資料進行計算即可
		int be = 1;//be=1表示不縮放
		if (w > h && w > ww) {//如果寬度大的話根據寬度固定大小縮放
			be = (int) (newOpts.outWidth / ww);
		} else if (w < h && h > hh) {//如果高度高的話根據寬度固定大小縮放
			be = (int) (newOpts.outHeight / hh);
		}
		if (be <= 0)
			be = 1;
		newOpts.inSampleSize = be;//設定縮放比例
		//重新讀入圖片,注意此時已經把options.inJustDecodeBounds 設回false了
		bitmap = BitmapFactory.decodeFile(srcPath, newOpts);
		return compressImage(bitmap);//壓縮好比例大小後再進行質量壓縮
	}

第三:圖片按比例大小壓縮方法(根據Bitmap圖片壓縮):

  1. private Bitmap comp(Bitmap image) {  
  2.       
  3.     ByteArrayOutputStream baos = new ByteArrayOutputStream();         
  4.     image.compress(Bitmap.CompressFormat.JPEG, 100, baos);  
  5.     if( baos.toByteArray().length / 1024>1024) {//判斷如果圖片大於1M,進行壓縮避免在生成圖片(BitmapFactory.decodeStream)時溢位     
  6.         baos.reset();//重置baos即清空baos   
  7.         image.compress(Bitmap.CompressFormat.JPEG, 50, baos);//這裡壓縮50%,把壓縮後的資料存放到baos中   
  8.     }  
  9.     ByteArrayInputStream isBm = new ByteArrayInputStream(baos.toByteArray());  
  10.     BitmapFactory.Options newOpts = new BitmapFactory.Options();  
  11.     //開始讀入圖片,此時把options.inJustDecodeBounds 設回true了   
  12.     newOpts.inJustDecodeBounds = true;  
  13.     Bitmap bitmap = BitmapFactory.decodeStream(isBm, null, newOpts);  
  14.     newOpts.inJustDecodeBounds = false;  
  15.     int w = newOpts.outWidth;  
  16.     int h = newOpts.outHeight;  
  17.     //現在主流手機比較多是800*480解析度,所以高和寬我們設定為   
  18.     float hh = 800f;//這裡設定高度為800f   
  19.     float ww = 480f;//這裡設定寬度為480f   
  20.     //縮放比。由於是固定比例縮放,只用高或者寬其中一個資料進行計算即可   
  21.     int be = 1;//be=1表示不縮放   
  22.     if (w > h && w > ww) {//如果寬度大的話根據寬度固定大小縮放   
  23.         be = (int) (newOpts.outWidth / ww);  
  24.     } else if (w < h && h > hh) {//如果高度高的話根據寬度固定大小縮放   
  25.         be = (int) (newOpts.outHeight / hh);  
  26.     }  
  27.     if (be <= 0)  
  28.         be = 1;  
  29.     newOpts.inSampleSize = be;//設定縮放比例   
  30.     //重新讀入圖片,注意此時已經把options.inJustDecodeBounds 設回false了   
  31.     isBm = new ByteArrayInputStream(baos.toByteArray());  
  32.     bitmap = BitmapFactory.decodeStream(isBm, null, newOpts);  
  33.     return compressImage(bitmap);//壓縮好比例大小後再進行質量壓縮   
  34. }  

相關文章