动态获取位图数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了动态获取位图数据相关的知识,希望对你有一定的参考价值。
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; }
以上是关于动态获取位图数据的主要内容,如果未能解决你的问题,请参考以下文章
SeekBar:从 Drawable 获取空位图,直到将其设置为 ImageView 或如何从 9patch 获取结果位图