以下代码定义了我的位图:
Resources res = context.getResources();
mBackground = BitmapFactory.decodeResource(res, R.drawable.background);
// scale bitmap
int h = 800; // height in pixels
int w = 480; // width in pixels
// Make sure w and h are in the correct order
Bitmap scaled = Bitmap.createScaledBitmap(mBackground, w, h, true);
...并且以下代码用于执行/绘制它(未缩放的位图):
canvas.drawBitmap(mBackground, 0, 0, null);
我的问题是,我如何设置它来绘制以 的形式返回的缩放位图Bitmap scaled
,而不是原始的?