I'm working on a project where you can design a pattern. The goal is to allow the user to save the design and save it for other users to vote on it later. I need to be able to take a screen grab(bitmapdata) of the view. What is the best way to do this?
I tried using view.session = new BitmapRenderSession(1); then... var view_snapshot:BitmapData = view.getBitmapData(); var view_bitmap:Bitmap = new Bitmap(view_snapshot); The bitmap is working, but the quality isn't very good. Jagged edges. And for some reason it's not rendering changes to the object instantly. Basically you have to spin the design to see what you just changed in the object. When I don't use BitmapRenderSession the updates are happening as intended. Am I trying to go at this in the wrong way? How do I create a still image of the view? Thanks in advance.
