Monday, January 30, 2012

Install and compile SWFTOOLS under Debian Squeeze 6.0.3

apt-get install libgif-dev xpdf libfreetype6 libfreetype6-dev libjpeg62 libjpeg8 libjpeg8-dev

wget  http://www.swftools.org/swftools-2011-12-15-1229.tar.gz


tar -zvxf swftools-2011-12-15-1229.tar.gz

cd swftools-2011-12-15-1229

./configure --prefix=/usr/local

make

make install

Now you are rady to use swftools...
For testing, try to convert a pdf, with more than one pages, into a swf file.....:

pdf2swf input-file.pdf -o output-file.swf


Bye...

13 comments:

  1. I publish in my blog how to extract from a swf, i comment your post, it's my source to explain to extract.

    thank you!

    ReplyDelete
  2. if you're working on a brand new Debian, you could probably haven't installed gcc, g++, which makes the compilation to fail.

    apt-get install build-essential

    ReplyDelete