Quote Originally Posted by cody112 View Post
But I can't say much for the base64 thing cause I have no idea what it is, so Im gonna google it.
Well... I found it right away XD, so your telling me that base64 would work on a bitmapData right.

So this would work?

var bmpData = new BitmapData("yada yada yada here");//BitmapData
var encoded:String = Base64.encode(bmpData);
trace(encoded)

var decoded:String = Base64.decode(encoded);
trace(decoded);

It don't take a long time to get it through do it?