1. 安装:ImageMagick:
下载:sudo curl -O ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz
解压:sudo tar -zxvf ImageMagick.tar.gz
安装:
cd ImageMagick-7.0.7-22/
sudo ./configure --prefix=/usr/local/imageMagick
sudo make&&
make install
2. 安装php扩展imagick
解压:sudo tar -zxvf imagick-3.4.3
安装:
cd imagick-3.4.3
sudo /usr/local/php/bin/phpize
sudo ./configure --with-php-config=/usr/local/php/bin/php-config --with-imagick=/usr/local/imageMagick
sudo make&&
make install
3. 最后再在php.ini中写入extension即可