查找 Flex 中位图使用的总字节数

发布于 2024-08-06 13:38:55 字数 133 浏览 4 评论 0原文

如果我使用 Flex 中的加载程序加载位图,我可以使用 loaderInfo.bytesTotal 获取位图的大小(已使用的总字节数)。

如果我在运行时创建一个位图,我如何找出该位图的大小、使用的总字节数。

请指教。谢谢

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无声情话 2024-08-13 13:38:55

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

这可能会起作用。

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

That might do the trick.

墟烟 2024-08-13 13:38:55

我认为比上面的解决方案更好的解决方案是:

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

这是因为使用 getPixels() 方法会创建一个额外的 ByteArray,因此它既慢又使用额外的内存。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文