51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

CentOS系统php5.6安装ImageMagick处理webp格式图片

1、先安装webp

yum install libwebp
yum install libwebp-devel

2、编译安装ImageMagick

之前有过yum安装的先卸载

yum remove ImageMagick

我使用的是老版本ImageMagick-6.8.7-10.tar.gz,备用下载地址:https://www.lanzous.com/i1b99je

tar -zxvf ImageMagick-6.8.7-10.tar.gz
cd ImageMagick-6.8.7-10
./configure --with-webp
make && make install

查看ImageMagick支持的格式,确认包含 webp

convert -list format

测试将webp格式转换为jpg格式,

convert test.webp test.jpg

3、编译安装ImageMagick-php

从http://pecl.php.net/package/imagick找到imagick的最新的版本

wget http://pecl.php.net/get/imagick-3.4.3.tgz
tar -zxvf imagick-3.4.3.tgz
cd imagick-3.4.3
phpize
./configure
make
make install

加载imagick到php

在/etc/php.ini 加上extension=imagick.so

重启apache
service httpd restart //CentOS6
systemctl restart httpd.service //CentOS7
使用 phpinfo() 来查看是否安装成功

赞(0)
未经允许不得转载:工具盒子 » CentOS系统php5.6安装ImageMagick处理webp格式图片