Skip to content

Instantly share code, notes, and snippets.

@mstudio
Created November 29, 2011 21:49
Show Gist options
  • Save mstudio/1406710 to your computer and use it in GitHub Desktop.
Save mstudio/1406710 to your computer and use it in GitHub Desktop.
AS3: Copy display Object
public static function copy(d:DisplayObject, w:Number, h:Number, smoothing : Boolean = true): Bitmap
{
var data:BitmapData = new BitmapData(w, h, true, 0xffffff);
var bmp:Bitmap = new Bitmap(data);
bmp.smoothing = smoothing;
bmp.bitmapData.draw(d);
return bmp;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment