can this be transfered via p just email
paypal can not transfer the completed image, I figured I would have it sent separately via a email link, or tie it in with a php script, but everything I found will only allow text.
I am assuming:
var bmp:BitmapData = new BitmapData(stage.width, stage.height, true, 0x00000000);
bmp.draw(stage);
var bytes:ByteArray = PNGEncoder.encode(bmp);
var fr:FileReference = new FileReference();
fr.save(bytes, "sticker.png");
}
That "bytes" is the variable holding the image data could this alone be sent
and if it can how everything I have found is just sending text from froms nothing about sending images.
Thanks