`
kongq1983
  • 浏览: 40354 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

linux下安装imagemagick

 
阅读更多

1. 安装jpeg

 

 

安装jpeg

 

tar -zvxf jpegsrc.v6b.tar.gz
cd jpeg-6b/
./configure --enable-shared --enable-static ; make ; make install

 

2. 安装zlib

tar -xzvf zlib-1.2.5.tar.gz 
cd zlib-1.2.5
./configure
make
make install

 

3. 安装png

tar -xzvf libpng-1.2.12.tar.gz
cd libpng-1.2.12
cp scripts/makefile.std makefile

 

32位:

make

make install

 

64位::

make CFLAGS=-fPIC   

make  CFLAGS=-fPIC install

 

 

4. 安装freetype

./configure
make
make install

 

5. 安装jasper

unzip jasper-1.900.1.zip   
cd jasper-1.900.1  
CFLAGS=-fPIC  ./configure   
make CFLAGS=-fPIC   
make  CFLAGS=-fPIC install 

 

 

6. 安装imagemagick

 

Install from Unix Source

ImageMagick builds on a variety of Unix and Unix-like operating systems including Linux, Solaris, FreeBSD, Mac OS X, and others. A compiler is required and fortunately almost all modern Unix systems have one. Download ImageMagick.tar.gz from www.imagemagick.org or a mirrors and verify its message digest.

Unpack the distribution with this command:

$ tar xvfz ImageMagick.tar.gz

Next configure and compile ImageMagick:

$ cd ImageMagick-6.7.5$ ./configure$ make

 

If ImageMagick configured and compiled without complaint, you are ready to install it on your system. Administrator privileges are required to install. To install, type

$ sudo make install

You may need to configure the dynamic linker run-time bindings:

$ sudo ldconfig /usr/local/lib

Finally, verify the ImageMagick install worked properly, type

$ /usr/local/bin/convert logo: logo.gif

For a more comprehensive test, run the ImageMagick validation suite. Ghostscript is a prerequisite, otherwise the EPS, PS, and PDF tests will fail.

$ make check

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics