Kevin
Kevin

Reputation: 23634

swf to pdf using php

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.

Upvotes: 2

Views: 3131

Answers (2)

George Profenza
George Profenza

Reputation: 51867

I've noticed your question states using php, but I was pretty happy with this library: AlivePDF. It's worth a try.

Upvotes: 0

Paul Dixon
Paul Dixon

Reputation: 301055

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.

Upvotes: 1

Related Questions