本文介绍了亚马逊ec2 linux Imagemagick问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

命令:转换| head -n 4
显示此

Command:convert | head -n 4Shows this

然后当我运行时:

<?php
$imagick = new Imagick();
$imagick->readImage('test.pdf');
$imagick->writeImages('image.jpg', false);
echo 'Aw';
?>

显示此错误:

我添加 extension = imagick.so 到我的

etc / php.ini

etc / php-5.6.ini

etc / php-5.5.ini

在测试 sudo service httpd restart

我的参考资料:

推荐答案

试试这个

yes | yum install kernel-devel gcc gcc-c++
yes | yum install php-devel
yum install php-pear # This line installs pecl as well as pear
yum install ImageMagick-devel
pecl install imagick
Add extension-imagick.so to /etc/php.ini
service httpd restart

这篇关于亚马逊ec2 linux Imagemagick问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-08 02:51