查找 Flex 中位图使用的总字节数
如果我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可能会起作用。
That might do the trick.
我认为比上面的解决方案更好的解决方案是:
这是因为使用 getPixels() 方法会创建一个额外的 ByteArray,因此它既慢又使用额外的内存。
I think a better solution than the one above would be:
This is because using the getPixels() method creates an additional ByteArray, so it's both slow and uses extra memory.