我需要将服务器(通过amf发送)中的base64编码字符串转换为图像。在服务器上原始图像数据(gif / jpeg / png)被编码为base64(已经正常工作),我需要解码这个字符串并在我的flash电影中显示图像。怎么办呢?
答案 0 :(得分:1)
将其转换为字节数组package com.adobe.images.*
答案 1 :(得分:1)
将字符串转换为ByteArray后,可以创建Loader对象并使用LoadBytes将二进制对象转换为显示对象。然后将加载器添加到舞台。
var loader:Loader = new Loader();
loader.contentLoaderInfo.addEventListener(Event.COMPLETE, completeHandler);
loader.loadBytes(yourBytesHere)
function completeHandler(e:Event):void {
addChild(loader);
}