ImageMagick简明安装部署手册

时间:2022-05-05 07:12:51

近来在图片存储服务器发现CPU居高不下,打开VirtualVM分析,发现是咱生成缩略图的功能太耗CPU,遂决定对此进行优化,降低计算时间。

 

首先,要降低计算时间,首先要使用高效的算法,计算机图形学咱不懂,还是用别人的吧;第二,计算这事就不能交给JVM来解释执行了,得通过JNI调用OS相关的binary code

 

在网上询问若干大牛后,推荐了ImageMagick,堪称专业。

地址为:http://www.imagemagick.org/script/index.php

 

1,  安装依赖库

首先从源码安装,安装先注意,ImageMagick本身依赖了一些其它的库,如果我们想对jpeg格式的图片进行处理,则先要安装处理jpeg相关的库。

这些库的下载地址为:http://www.imagemagick.org/download/delegates/

要处理jpeg的库,jpegsrc.v7.tar.gz是必需,还是从源码安装。

安装命令如下:

tar xvfz jpegsrc.v7.tar.gz

cd jpeg-7

./configure

make

make install

 

要处理png的库,则libpng-1.5.10.tar.gz是必需的,还是从源码安装。

安装命令如下:

tar xzvf libpng-1.5.10.tar.gz
cd libpng-1.5.10
./configure
make
make install
 

 

2ImageMagick本身的源码安装

安装命令如下:

 

tar xzvf ImageMagick.tar.gz
cd ImageMagick-6.7.6-5
./configure --prefix=/opt/ImageMagick --enable-share --enable-static LDFLAGS="-L/usr/lib64" CPPFLAGS="-I/usr/include”
make
make install

ldconfig /usr/local/lib

 

make的时间有点漫长,你可以去喝杯茶。

 

下面来验证一下是否安装成功。

运行如下命令,把test.jpg转换为png格式:

/opt/ImageMagick/bin/convert test.jpg test.png

 

如果这一步都没有测试成功,那么说明你的配置还有问题,如果错误提示信息是:convert: no decode delegate for this image format,那么你需要使用convert-list format命令查找一下convert支持的文件类型,如果不包含jpeg格式,那么说明你上面的jpeg包没有安装好。

 

3,  安装客户端

Java客户端目前大体有2种,一种是JMagick,它通过JNI与底层库交互;另一种较新的Im4java通过shell与底层库交互。先不对两者的其它方面进行比较,就与底层库的交互来说,后者通过shell进行交互,每次调用shell会生成一个子进程,调用结束销毁,这样的开销对于服务器端是不可接受,这就跟早期的apache服务器类似,每接收一个请求就fork一个进程来进行处理。

 

这样我们别无选择,只能使用JMagickOK,还是从源码编译。

安装命令如下:

./configure --prefix=/opt/jIM --with-magick-home=/opt/ImageMagick --with-java-home=/usr/java/jdk1.6.0_29 --enable-share --enable-static

 

 

运行后你可能会发生如下错误:

checking for MagickCore-config... /opt/ImageMagick/bin/MagickCore-config

Package MagickCore was not found in the pkg-config search path.

Perhaps you should add the directory containing `MagickCore.pc'

to the PKG_CONFIG_PATH environment variable

No package 'MagickCore' found

Package MagickCore was not found in the pkg-config search path.

Perhaps you should add the directory containing `MagickCore.pc'

to the PKG_CONFIG_PATH environment variable

No package 'MagickCore' found

Package MagickCore was not found in the pkg-config search path.

Perhaps you should add the directory containing `MagickCore.pc'

to the PKG_CONFIG_PATH environment variable

No package 'MagickCore' found

checking magick/api.h usability... no

checking magick/api.h presence... no

checking for magick/api.h... no

configure: error: 'Unable to find ImageMagick header files'

 

你可以通过查看下面这个帖来解决:

http://superuser.com/questions/361435/i-have-compiled-imagemagick-on-my-centos-and-rmagick-wont-install

 

接着运行以下命令:

make all

make install

OK,在/opt/jIM/lib目录下能看到我们想要的东西:客户端使用的JAR包和对应的底层库文件,咱的OS64位的,先把库文件挪到/lib64下;在客户端的classpath加上JAR包路径即可,最后别忘了,启动客户端时在JVM的参数加上-Djmagick.systemclassloader=no

 

    到此为止,祝你好运。