vote up 1 vote down star

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

flag

1 Answer

vote up 2 vote down check

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

That might do the trick.

link|flag
JStriedl, thanks for your reply. I have tried a similar method before. var byteArray:ByteArray = _bitmap.bitmapData.getPixels(new Rectangle(0, 0, _bitmap.width, _bitmap.height)); _bitmapTotalBytes = byteArray.length; However, _bitmapTotalBytes is much larger than the original jpg file, although I have already reduce the width and height. Do you know why? Thanks. – michael Oct 1 at 18:43
The jpeg format is compressed when stored on disk, and must be decompressed for display. So, the length of the ByteArray will be much larger than the file, as it represents the pixel data in uncompressed, displayable format, NOT the original compressed JPEG file size. – JStriedl Oct 1 at 18:55
Striedl, Thanks. – michael Oct 1 at 19:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.