首先下载ImageMagick安装包并解压:
[root@localhost ~]# wget http://www.imagemagick.org/download/ImageMagick.tar.gz [root@localhost ~]# tar -zxvf ImageMagick.tar.gz
进入解压后文件目录,编译配置并安装:文章源自爱尚资源教程网-https://www.23jcw.net/1190.html
[root@localhost ~]# cd ImageMagick-7.0.11-12 [root@localhost ~]# ./configure --prefix=/usr/local/imagemagick [root@localhost ~]# make && make install
使用vim编辑环境变量:文章源自爱尚资源教程网-https://www.23jcw.net/1190.html
[root@localhost ~]# vim /etc/profile
在profile文件末尾添加如下两行代码:文章源自爱尚资源教程网-https://www.23jcw.net/1190.html
PATH=$PATH:/usr/local/imagemagick/bin/ export PATH
使用source命令重新加载环境变量:文章源自爱尚资源教程网-https://www.23jcw.net/1190.html
[root@localhost ~]# source /etc/profile
安装php扩展imagick用于调用ImageMagick:文章源自爱尚资源教程网-https://www.23jcw.net/1190.html
[root@localhost ~]# git clone https://github.com/Imagick/imagick [root@localhost ~]# cd imagick [root@localhost ~]# /usr/local/php8/bin/phpize [root@localhost ~]# ./configure --with-php-config=/usr/local/php8/bin/php-config --with-imagick=/usr/local/imagemagick [root@localhost ~]# make && make install
最后添加extension=imagick.so扩展行到php.ini,重新加载配置文件php.ini启动php:文章源自爱尚资源教程网-https://www.23jcw.net/1190.html
[root@localhost ~]# /usr/local/php8/sbin/php-fpm -c php.ini
PHP扩展安装Imagick文章源自爱尚资源教程网-https://www.23jcw.net/1190.html 文章源自爱尚资源教程网-https://www.23jcw.net/1190.html
相关文章
版权声明:文章图片资源来源于网络,如有侵权,请留言删除!!!