ActionScript 3 动态获取位图数据

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 动态获取位图数据相关的知识,希望对你有一定的参考价值。

public static function getBitmapData(target:DisplayObjectContainer) : BitmapData
{
     var bounds : Rectangle = new Rectangle();
     bounds = target.getBounds(target);
     var matrix : Matrix = new Matrix(1, 0, 0, 1, 0 - bounds.x, 0 - bounds.y);
     matrix.scale(1, 1);
     //for png data set the transparent to true, otherwise just leave as false
     var bmd : BitmapData = new BitmapData(bounds.width, bounds.height, true);  
     bmd.draw(target, matrix, null, null, null, true);
     return bmd;
}

以上是关于ActionScript 3 动态获取位图数据的主要内容,如果未能解决你的问题,请参考以下文章

在 ActionScript3 中嵌入位图

ActionScript 3 公共位图

ActionScript 3 双线性位图缩放

ActionScript 3 位图平滑

ActionScript 3 DisplayObjects的位图快照

ActionScript 3 平滑位图调整大小