今天在新服上安装php imagick,
环境如下:
php 5.4.13
ImageMagick-6.8.3-10
imagick-3.0.1
可是出错了一个问题.就是死说找不到MagickWand.h:
checking for MagickWand.h header file… configure: error: Cannot locate header file MagickWand.h
可是我明明正确安装了ImageMagick的呀.GOOGLE了半天,也解决不了这个问题.后面对照另一个服务器上的ImageMagick才发现,原来ImageMagick 6.8这个版后的目录结构变了,旧版本头文件是放在/usr/local/include/ImageMagick目录的,而ImageMagick 6.8则是放在/usr/local/include/ImageMagick-6添加软连接
命令如下:
ln -s /usr/local/include/ImageMagick-6 /usr/local/include/ImageMagick
make && make && install
编译通过!
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/56204.html