tags:

views:

1092

answers:

2

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
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