LNMP/LNMPA一键安装包ImageMagick安装配置教程
LNMP/LNMPA一键安装包都是只安装了GD库,看网上的评价貌似ImageMagick要更好些。VPS论坛上也不少会员要求写篇文章,下面就具体说一下LNMP/LNMPA一键安装包ImageMagick安装过程:
ImageMagick 是一个免费的创建、编辑、合成图片的软件。它可以读取、转换、写入多种格式的图片。图片切割、颜色替换、各种效果的应用,图片的旋转、组合,文本,直线,多边形,椭圆,曲线,附加到图片伸展旋转。
imagick 是PHP的一个扩展程序,它是默认的GD图象函数库的绝佳替代方案。
1、安装ImageMagick
wget http://soft.vpser.net/web/imagemagick/ImageMagick-6.7.1-2.tar.gz
tar zxvf ImageMagick-6.7.1-2.tar.gz
cd ImageMagick-6.7.1-2/
./configure --prefix=/usr/local/imagemagick
make && make install
cd ../
tar zxvf ImageMagick-6.7.1-2.tar.gz
cd ImageMagick-6.7.1-2/
./configure --prefix=/usr/local/imagemagick
make && make install
cd ../
执行:/usr/local/imagemagick/bin/convert logo: logo.gif 测试一下ImageMagick是否可以正常运行。
2、安装PHP扩展:imagick
wget http://pecl.php.net/get/imagick-3.0.1.tgz
tar zxvf imagick-3.0.1.tgz
cd imagick-3.0.1/
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config --with-imagick=/usr/local/imagemagick
make && make install
cd ../
tar zxvf imagick-3.0.1.tgz
cd imagick-3.0.1/
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config --with-imagick=/usr/local/imagemagick
make && make install
cd ../
编辑/usr/local/php/etc/php.ini 添加:extension = "imagick.so"
重启php-fpm或apache。
/etc/init.d/php-fpm restart
/etc/init.d/httpd -k restart
再执行一下:ldconfig ,重新加载一些链接库。
3、Discuz! X 上的ImageMagick设置
登录Discuz! X后台,在“上传设置”里选择 ImageMagick,并在ImageMagick 程序安装路径写上: /usr/local/imagemagick/bin/
过几天再写个ImageMagick的自动安装脚本,如有问题欢迎在本文留言或到VPS论坛交流反馈。
原创文章,谢绝转载!
>>转载请注明出处:VPS侦探 本文链接地址:https://www.vpser.net/manage/lnmp-lnmpa-imagemagick-install-tutorial.html
@panghuang, 安装apache后php已经不是原来的php了,已经重装了php,原来安装的imagick php扩展就没了,所以需要在升级到lnmpa后重新./imageMagick.sh 安装