情况如下:在我的舞台上,我有一个引用 BitmapData 对象的 Bitmap 对象。我的位图对象是全屏的,所以是 1366x768。
另一方面,我有一个函数(来自一个库,所以我不能编辑它),它返回一个带有新图片的 BitmapData。那张图片是 640x480,并且该函数每秒调用一次。
这就是问题所在:我找不到将返回的图片缩放到全屏的方法。我尝试使用 Matrix 和 .draw 方法,但什么也没做。
这是一些代码:
var mat:Matrix = new Matrix();
mat.scale(0.52, 0.52); // I tried with other values such as 2 but the picture stays the same
// scr_bmp is the BitmapData attached to the displayed Bitmap
// capt.bmp is the BitmapData returned by the function
// I tried without the new Rectangle but that doesn't change anything
scr_bmp.draw(capt.bmp, mat, null, null,new Rectangle(0, 0, 640, 480), true);
使用此代码,新图片可以正确显示,但其原始尺寸为:640x480,屏幕的其余部分为空白。
在此先感谢您的帮助 !