1. 程式人生 > >按寬/高縮放圖片到指定大小並進行裁剪得到中間部分圖片 返回Bitmap

按寬/高縮放圖片到指定大小並進行裁剪得到中間部分圖片 返回Bitmap

/**
	 * 按寬/高縮放圖片到指定大小並進行裁剪得到中間部分圖片 <br>
	 * 方 法 名:zoomBitmap <br>
	 * 創 建 人: <br>
	 * 建立時間:2016-6-7 下午12:02:52 <br>
	 * 修 改 人: <br>
	 * 修改日期: <br>
	 * @param bitmap 源bitmap
	 * @param w 縮放後指定的寬度
	 * @param h 縮放後指定的高度
	 * @return 縮放後的中間部分圖片 Bitmap
	 */
	public static Bitmap zoomBitmap(Bitmap bitmap, int w, int h) {
		int width = bitmap.getWidth();
		int height = bitmap.getHeight();
		Log.i("TAG", "zoomBitmap---" + "width:" + width + "---" + "height:" + height);
		float scaleWidht, scaleHeight, x, y;
		Bitmap newbmp;
		Matrix matrix = new Matrix();
		if (width > height) {
			scaleWidht = ((float) h / height);
			scaleHeight = ((float) h / height);
			x = (width - w * height / h) / 2;// 獲取bitmap原始檔中x做表需要偏移的像數大小
			y = 0;
		} else if (width < height) {
			scaleWidht = ((float) w / width);
			scaleHeight = ((float) w / width);
			x = 0;
			y = (height - h * width / w) / 2;// 獲取bitmap原始檔中y做表需要偏移的像數大小
		} else {
			scaleWidht = ((float) w / width);
			scaleHeight = ((float) w / width);
			x = 0;
			y = 0;
		}
		matrix.postScale(scaleWidht, scaleHeight);
		try {
			newbmp = Bitmap.createBitmap(bitmap, (int) x, (int) y, (int) (width - x), (int) (height - y), matrix, true);// createBitmap()方法中定義的引數x+width要小於或等於bitmap.getWidth(),y+height要小於或等於bitmap.getHeight()
		} catch (Exception e) {
			e.printStackTrace();
			return null;
		}
		return newbmp;
	}