0
A
回答
2
你不能同步做到這一點。但這是你如何異步做到這一點。
<?xml version="1.0" encoding="utf-8"?>
<fx:Script>
<![CDATA[
public function init():void {
var loader:Loader = new Loader();
loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onComplete);
loader.load(new URLRequest(encodeURI("http://www.google.com/logos/2011/mary_blair-2011-hp.jpg")));
}
private function onComplete(e:Event)
{
//of course if all you were doing is displaying an image its better to do:
//image.source = e.currentTarget.content;
var bytes:ByteArray = LoaderInfo(e.currentTarget).bytes;
//binary output
trace(bytes);
var imageLoader:Loader = new Loader();
imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onImageComplete);
imageLoader.loadBytes(bytes, null);
}
private function onImageComplete(e:Event):void
{
image.source = LoaderInfo(e.currentTarget).content;
}
]]>
</fx:Script>
<s:Image id="image" />
相關問題
- 1. 自動從外部源獲取資產
- 2. Flex中的ByteArray圖像
- 3. ByteArray圖像顯示Flex - SQLite
- 4. 同步獲取圖片(來自Uri)
- 5. 顯示圖像來自資產/圖像的圖庫
- 6. Rails 3.1.1在圖像資產上獲取損壞的圖像
- 7. 如何在視圖中獲取資產管道圖像的URL?
- 8. Flex:將資產加載到外部加載的模塊中
- 9. 來自外部URL的灰度圖像
- 10. 如何同步視頻(圖像)輸入與外部來源?
- 11. Flex處理圖像(轉換爲Bytearray)
- 12. 從ByteArray獲取圖像大小
- 13. 來自資產管道的圖像沒有顯示出來
- 14. 使用外部程序從資產中打開圖像
- 15. 從pipcapfile中的TCP頭部獲取ByteArray
- 16. NodeJS gm同步獲取圖像大小
- 17. android,從資產中讀取jpg圖像
- 18. 來自網絡攝像頭的bytearray
- 19. Rails 3.1外部視圖資產管道
- 20. 在部署到Windows時嵌入和讀取圖像資產
- 21. 來自地圖的同步設置或來自同步地圖的設置?
- 22. pymongo獲取圖像返回GridFS外部
- 23. 從外部服務器獲取圖像
- 24. Grails - 在CSS中獲取圖像資源
- 25. 獲得來自外部
- 26. 如何包含來自angular2 webpack資產的圖像
- 27. 無法顯示來自資產目錄的圖像
- 28. 管理R包中的外部資產
- 29. Symfony2共享/外部資產
- 30. Unity WebGL外部資產
你能否爲什麼你需要同步做詳細點嗎? ECMAScript語言在設計上是異步的,這通常是一件好事*。 – merv
我使用文本和圖像生成文檔。文本被放置在「實時」中,在不同的時間幀中移動圖像使事情變得複雜。 – Francisc