Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i want to convert a swf to image on my website. a user makes some changes on the stage and if he press a button "get image link", the swf stage will be converted to an image and its image link will appear within a box. like imageshack.. so user can use it in forums as image. how can i do this? i even dont know it is about flash or html...

share|improve this question

1 Answer

up vote 1 down vote accepted

Have a good read of Henry Jones - Using the AS3 Jpeg Encoder. He explains exactly what you need, plus some!

You basically what to use the BitmapData class to convert you displayobject into image data. Then you can use JPGEncoder from AS3 Core Lib, to encode that data into a JPEG. Then with a bit of serverside code you can send that JPEG to that server.

share|improve this answer
When I tried to access the Henry Jones link (attempted on Tuesday, May 29, 2012), it was broken. Quick searching on Google did not reveal anything. If anyone knows the current link, please update it. – VOIDHand May 29 '12 at 13:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.