How to convert bytearray to image or image to bytearray ?

后端 未结 7 1390
感情败类
感情败类 2020-12-06 18:57

How to assign bytearray value to panel background image. If anybody have idea or experiance plz help me to overcome the problem. BRIEF EXP:

I have panel control an

7条回答
  •  半阙折子戏
    2020-12-06 19:42

    Just load it into a Loader instance using the loadBytes function.

    var ldr:Loader = new Loader(); 
    ldr.loadBytes(myByteArray); 
    addChild(ldr); 
    

提交回复
热议问题