I am thinking to use Papervision 3d and Flash for my project.
I have doubt that Can I save the Papervision 3d model as image (JPG or PNG) in Flash CS6?
For example, I am going to import a model from blender, after that I will apply texture to that model. So the final result should save in my server as image (public_html/imageeditor/img/final.jpg) Is it possible ? If you have any tutorials or reference please provide me that can help me extra...
Thanks.
You can use
BitmapData.drawto "snapshot" something on the stage into a Bitmap.From there, you can make a new Bitmap in AS3 of the image:
var bitmap:Bitmap = new Bitmap(snapshotBD);Or save the image to the server like you would any other
Bitmapin Flash.For more info on
BitmapData.draw, check out Adobe's docs.