Tagged Questions
0
votes
3answers
705 views
Is there a way to export a DisplayObject's vector data?
Flex gives the ability to export a display object as a bitmap as follows:
var bitmapDataBuffer:BitmapData = new BitmapData ( displayObject.width, displayObject.height, false);
...