tmatthews
tmatthews

Reputation: 15

AS3 BitmapData to byteArray

I am trying to serialize a Bitmap to store in an XML file. My plan is to turn the BitmapData into a byteArray, but I haven't been able to fine an example of this.

Other suggestions are also welcome.

Upvotes: 1

Views: 6218

Answers (1)

Ben
Ben

Reputation: 21249

The process should be: BitmapData > ByteArray > Base64 > XML

Use the BitmapData getPixels() method to get a ByteArray of the pixels.

Then you can use something like Hurlant's Base64 encoder to convert it to base 64.

Then going the other way, "unbase64" it, then use BitmapData's setPixels to load it.

Upvotes: 4

Related Questions