Okay guys, I’m posting here because I’ve run out of ideas.
I’ve got an ActiveMQ that’s feeding me data via STOMP, and some of this data are large chunks of binary that are the guts of a PNG image.
I’d like to be able to display that PNG (As you would from your general Loader.load() functions), but am coming up short on ideas.
Currently the data coming in looks something like this:
<xmlWrapper>
<dataType>pngImage</dataType>
<pngData>Unbelievably long string of binary gibberish</pngData>
</xmlWrapper>
If I had access to PHP, I’d be able to dump this into imagePNG and get something out, but no such luck yet with AS3.
Anyone have any ideas?