Flex:如何获取图像的图像大小?

发布于 2024-08-27 21:43:27 字数 179 浏览 4 评论 0原文

给定一个Image组件,我如何知道Image所包含的位图图像的大小[宽度和高度](而不是Image<的大小) /code> 组件)

我也想尽快知道这一点,所以我认为这需要在 Event.COMPLETE 事件中?

谢谢!!

Give an Image component, how can I tell the size [width and height] of the bitmap image that the Image is containing (not the size of the Image component)

Also I want to know this as soon as possible, so I think this needs to be in the Event.COMPLETE event?

Thanks!!

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

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

发布评论

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

评论(2

风蛊 2024-09-03 21:43:28

BitmapData 类将为您提供宽度和高度属性。

这应该在方法中可用

protected measure()

,如果您需要对其执行操作,可以覆盖该方法。

The BitmapData class will give you the width and height properties.

This should be available in the

protected measure()

method, which you can override if you need to do things to it.

差↓一点笑了 2024-09-03 21:43:27

由于 Image 扩展了 SWFLoader,因此属性 contentWidthcontentHeight 都是公开可用的。它们可以在"完整" 事件。

如果图像是从另一个域加载的,则可能不允许访问图像的位图数据。

Since Image extends SWFLoader, properties contentWidth and contentHeight are both publicly available. They are available on the "complete" event.

Accessing the Image's bitmap data might not be allowed if the Image is loaded from another domain.

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