Flex:如何获取图像的图像大小?
给定一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
BitmapData 类将为您提供宽度和高度属性。
这应该在方法中可用
,如果您需要对其执行操作,可以覆盖该方法。
The BitmapData class will give you the width and height properties.
This should be available in the
method, which you can override if you need to do things to it.
由于 Image 扩展了 SWFLoader,因此属性
contentWidth
和contentHeight
都是公开可用的。它们可以在"完整" 事件。如果图像是从另一个域加载的,则可能不允许访问图像的位图数据。
Since Image extends SWFLoader, properties
contentWidth
andcontentHeight
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.