android 放大平鋪圖片

平鋪:

// 畫一個平鋪效果的圖
	public Bitmap createRepeater(int width, Bitmap src) {
		int count = (width + src.getWidth() - 1) / src.getWidth();

		Bitmap bitmap = Bitmap.createBitmap(width, src.getHeight(),
				Config.ARGB_8888);
		Canvas canvas = new Canvas(bitmap);
		for (int idx = 0; idx < count; ++idx) {
			canvas.drawBitmap(src, idx * src.getWidth(), 0, null);
		}
		return bitmap;
	}

放大圖片然後調用平鋪:

public Drawable getBottomTitle54(Context context) {
		Bitmap bitmapT = BitmapFactory.decodeResource(context.getResources(),
				R.drawable.home_page_bottom);

		int width = bitmapT.getWidth();
		int height = bitmapT.getHeight();
		// 設置想要的大小
		int newWidth = Utilities.getInstance().dip2px(context, 5);
		int newHeight = Utilities.getInstance().dip2px(context, 54);
		// 計算縮放比例
		float scaleWidth = ((float) newWidth) / width;
		float scaleHeight = ((float) newHeight) / height;
		// 取得想要縮放的matrix參數
		Matrix matrix = new Matrix();
		matrix.postScale(scaleWidth, scaleHeight);
		// 得到新的圖片
		Bitmap bitmap = Bitmap.createBitmap(bitmapT, 0, 0, width, height,
				matrix, true);

		DisplayMetrics dm = context.getResources().getDisplayMetrics();
		int w_screen = dm.widthPixels;
		Bitmap bitmap2 = createRepeater(w_screen, bitmap);
		return new BitmapDrawable(context.getResources(), bitmap2);
	}


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章