加载器内容始终为空

发布于 2024-08-21 17:42:00 字数 101 浏览 10 评论 0原文

我使用 Loader 类成功加载外部图像,但每次跟踪 loader.content 属性时都发现为 null。为什么?

ps:实际上,我正在尝试从加载器对象获取位图数据。

I load successfully an external image using a Loader class but every time i trace the loader.content property is found null. Why?

ps: Actually, i'm trying to get the bitmapdata from a loader object.

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

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

发布评论

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

评论(1

疯到世界奔溃 2024-08-28 17:42:00
  1. 确保您没有意外地将侦听器附加到加载程序本身,而不是加载程序的 contentLoaderInfo 属性。
  2. 您应该能够以 Bitmap(loader.content).bitmapData 的形式访问它在 Event.COMPLETE 处理程序中。
  1. Make sure you didn't accidentally attach the listener to the loader itself as opposed to loader's contentLoaderInfo property
  2. You should be able to access it as Bitmap(loader.content).bitmapData in the Event.COMPLETE handler.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文