为PHP安装imagick时出现Cannot locate header file MagickWand.h错误的解决方法
发布:smiling 来源: PHP粉丝网 添加日期:2021-04-21 11:50:11 浏览: 评论:0
这篇文章主要介绍了为PHP安装imagick时出现Cannot locate header file MagickWand.h错误的解决方法,需要的朋友可以参考下
今天在新服上安装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
编译通过!
Tags: imagick Cannot locate header
相关文章
- ·PHP基于php_imagick_st-Q8.dll实现JPG合成GIF图片的方法(2021-03-20)
- ·PHP基于php_imagick_st-Q8.dll实现JPG合成GIF图片的方法(2021-03-20)
- ·PHP基于php_imagick_st-Q8.dll实现JPG合成GIF图片的方法(2021-03-20)
- ·php Imagick获取图片RGB颜色值(2021-03-26)
- ·Cannot use object of type stdClass as array(2013-11-28)
- ·Fatal error: Cannot redeclare 常见问题(2013-11-29)
- ·php Cannot modify header information-headers already sent by解决办法(2013-12-04)
- ·Warning: Cannot modify header information - headers already sent by (2013-12-04)
- ·PHP Fatal error: Cannot use object of type stdClass as array in错误(2014-09-20)
- ·解决phpMyAdmin Cannot start session without errors错误(2014-09-21)
- ·phpmyadmin报错:Cannot start session without errors问题(2014-09-21)
- ·编译PHP报错configure error Cannot find libmysqlclient under usr的解决方法(2021-03-03)
- ·PHP JSON出错:Cannot use object of type stdClass as array解决方法(2021-03-31)
- ·PHP提示Cannot modify header information - headers already sent by解决方法(2021-04-13)
- ·PHP错误Warning: Cannot modify header information - headers already sent by解决方法(2021-04-14)
- ·PHP动态编译出现Cannot find autoconf的解决方法(2021-04-24)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)