获取Flex中嵌入图像的宽度和高度?

时间:2011-06-13 15:07:56

标签: flex size embed

我有以下声明:

[Embed(source="i/6.png")]
private var img6 : Class;
  • 如何确定“img6”的宽度和高度?

1 个答案:

答案 0 :(得分:1)

您只能在实例化时确定嵌入图像的大小。类似的东西:

<s:BitmapImage source="{img6}" complete="completeHandler(event)" />
…
private function completeHandler(event:Event):void
{
    var image:BitmapImage = BitmapImage(event.currentTarget);
    trace (image.sourceWidth);
    trace (image.sourceHeight);
}