$uname-a
Linux icode-linux 3.0.0-16-generic #29-Ubuntu SMP Tue Feb 14 12:48:51 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux
下面我们来安装swftools,swftools安装需要几个类库支持
freetype: http://www.freetype.org
jpeglib: http://www.ijg.org/files/
xpdf: http://www.foolabs.com/xpdf/
zlib: http://www.zlib.net
我们首先来安装freetype吧
$wget http://nchc.dl.sourceforge.net/project/freetype/freetype2/2.4.8/freetype-2.4.8.tar.bz2
$tarxvf freetype-2.4.8.tar.bz2
$cdfreetype-2.4.8
$./configure
$make&&sudomakeinstall
然后我们继续安装jpeglib
$wget http://www.ijg.org/files/jpegsrc.v8d.tar.gz
$tarxvf jpegsrc.v8d.tar.gz
$cdjpegsrc.v8d
$./configure
$sudomake&&sudomakeinstall
接着我们安装zlib
$wget http://nchc.dl.sourceforge.net/project/libpng/zlib/1.2.6/zlib-1.2.6.tar.gz
$tarxvf zlib-1.2.6.tar.gz
$cdzlib-1.2.6
$./configure
$make&&sudomakeinstall
下面我们来配置swftools安装程序并安装,请自行下载官方最新版本,并解压。http://www.swftools.org/
$cdswftools/lib/pdf
$wgetftp://ftp.foolabs.com/pub/xpdf/xpdf-3.03.tar.gz
$cd../../
$./configure
如果出现
checking for missing libraries... ungif gif_lib.h
***************************************************
* The following headers/libraries are missing: ungif gif_lib.h
* Disabling gif2swf tool...
***************************************************
请自行安装libgif-dev,如果你需要gif2swf的话。这里笔者不需要这个工具,笔者不睬它。
继续
make&&sudomakeinstall
好,安装完成。如果你没有安装libgif-dev这时候可能会报错,但是无关紧要 pdfswf 可以使用就可以了。
rm:无效选项 -- o
Try 'rm --help' for more information.
make[1]: *** [install] 错误 1
解决办法,到解压好的swftools-0.x.x目录
编辑 swfs/Makefile 和 swfs/Makefile.in两个文件
rm -f $(pkgdatadir)/swfs/default_viewer.swf -o -L $(pkgdatadir)/swfs/default_viewer.swf
去掉其中的 -o -L 其他rm的地方的-o -L选项也都去掉
Ubuntu Server(64位)安装Openoffice4,SWFTools完成在线文档预览:http://www.linuxdiyf.com/linux/15046.html
Red Hat Linux Enterprise 4上安装swftools-0.9.1版本:http://www.linuxdiyf.com/linux/7480.html