Reputation: 82785
Is there any open source tool to convert PDF to SWF other than pdf2swf tools?
Upvotes: 3
Views: 705
Reputation: 367
Have you tried SWFTOOLS? On Debian/Unbuntu:
sudo apt-get install swftools pdf2swf filename.pdf http://wiki.swftools.org/index.php/Examples#pdf2swf They have a Windows version, and the source so you can compile it on other Linux flavors
Upvotes: 0
Reputation: 3827
pdf2swf uses "xpdf" to process PDF files.
You can try ImageMagic, it uses a different library (gscript) to process PDF files. You will have to convert to some intermediate format (like JPG/ SVG) and use a different tool to create SWF.
Upvotes: 2