Is there any way to convert a SWF to pdf using php. i mean the page has a button on the click it must export the swf contents in pdf.
+1
A:
One approach you could try is to use ffmpeg to convert the swf to a series of jpeg images, one per frame, using the 'image2' output codec (see this part of manual). Then you can select the appropriate frame and build a PDF with it using pdflib, fpdf or similar library.
Paul Dixon
2009-06-17 11:11:09
A:
I've noticed your question states using php, but I was pretty happy with this library: AlivePDF. It's worth a try.
George Profenza
2009-06-17 11:17:30