Find the total bytes used by a bitmap in Flex

2019-05-26 11:15发布

If I load a bitmap using a loader in Flex, I can use the loaderInfo.bytesTotal to get the size, total bytes used, of a bitmap.

If I create a bitmap in run time, how can I find out the size, the total bytes used, by that bitmap.

Please advice. Thanks

2条回答
冷血范
2楼-- · 2019-05-26 11:29

var bitmapByteSize:int = bitmap.bitmapData.getPixels(bitmap.bitmapData.rect).length;

That might do the trick.

查看更多
Rolldiameter
3楼-- · 2019-05-26 11:41

I think a better solution than the one above would be:

var bitmapByteSize:uint = bitmap.bitmapData.width * bitmap.bitmapData.height * 4;

This is because using the getPixels() method creates an additional ByteArray, so it's both slow and uses extra memory.

查看更多
登录 后发表回答