i have an application which takes a screenshot of the stage, which then gets uploaded to facebook. but the image quality is not great..is it something im doing wrong? ive also tried the PNGEncoder but the quality result is the same.
ActionScript Code:
var bd:BitmapData = new BitmapData(stage.stageWidth,stage.stageHeight);
bd.draw(stage);
var screenshot:Bitmap = new Bitmap(bd);
//i then uploaded screenshot to facebook
this with the PNGEncoder:
ActionScript Code:
var bd:BitmapData = new BitmapData(stage.stageWidth,stage.stageHeight);
bd.draw(stage);
var myPNG:ByteArray = PNGEncoder.encode(bd);
//myPNG gets uploaded to facebook
id appreciate the help, thanks.