linux下 安装 ImageMagick 及其 php imagick扩展
;ImageMagick网址
;http://www.imagemagick.org/script/install-source.php
;首先下载ImageMagick,当前最新版本ImageMagick-6.8.6-7
;按照里面的步骤一步步来
#wget http://www.imagemagick.org/download/ImageMagick.tar.gz
#tar xvfz ImageMagick.tar.gz
#cd ImageMagick-6.8.6-7/
;这个地方设置安装路径.后面安装php扩展需要用到
;/usr/local/imagemagick
#./configure --prefix=/usr/local/imagemagick
#make
#make install
;如无意外,一切OK
;测试一下
#/usr/local/imagemagick/bin/convert -version
;
;
;imagick网址
;http://pecl.php.net/package/imagick
;下载imagick,我挑了最新的下载3.1.0RC2
#wget http://pecl.php.net/get/imagick-3.1.0RC2.tgz
#tar zxvf imagick-3.1.0RC2.tgz
#cd imagick-3.1.0RC2/
;
#/usr/local/php/bin/phpize
;
;phpize是用来扩展php扩展模块的,通过phpize可以建立php的外挂模块
;这里要注意,当前位置必须在imagick-3.1.0RC2里面,可以用命令pwd查看下.
;如果不在imagick-3.1.0RC2里面,你可以执行试下
;php路径/usr/local/php,ImageMagick路径/usr/local/imagemagick
;
;
;在configure的时候,出现了error: Cannot locate header file MagickWand.h
;google下,原来ImageMagick 6.8这个版后的目录结构变了,
;旧版本头文件是放在/usr/local/include/ImageMagick目录的,
;而ImageMagick 6.8则是放在/usr/local/include/ImageMagick-6
;所以在configure之前先做下软连接
;
#ln -s /usr/local/imagemagick/include/ImageMagick-6 /usr/local/imagemagick/include/ImageMagick
;
#./configure --with-php-config=/usr/local/php/bin/php-config --with-imagick=/usr/local/imagemagick
#make
;
;configure通过,在make时出现错误error: wand/MagickWand.h: No such file or directory
;google,google
;发现还需要安装pkgconfig
;按照网上的说法yum install gtk+-devel
;发现No package gtk+-devel available.
;然后google,没找到一个有效的方法
;折腾了半个小时之后,发现了一个gtk2-devel
;就它有点像了,死马当活马医
;这里希望哪个大婶解释下为什么yum install gtk+-devel出错
;
#yum install gtk2-devel
#export PKG_CONFIG_PATH=/usr/local/imagemagick/lib/pkgconfig/
;
;然后重新安装imagick
;
#cd imagick-3.1.0RC2/
#/usr/local/php/bin/phpize
#./configure --with-php-config=/usr/local/php/bin/php-config --with-imagick=/usr/local/imagemagick
#make
#make install
;
;这下make成功了.后面有问题在说吧
;
;
;ok,ImageMagick和imagick安装完成,现在配置一下php.ini
;用vi打开php.ini,也可以用其他方式
;找到一堆extension的地方,在后面添上
;extension = imagick.so
;
- 相关文章
- 查看评论:(0)
【已经有0位大神发现了看法】
- [原创]Plupload 中文插件(zh-cn.js简体语言),以及加载使用方法 2014-09-22
- [分享]Plupload多文件上传开发利器(部分中文注释) 2014-09-22
- [原创]linux下php-screw安装记录 2013-08-13
- [分享]Linux下查看当前Apache并发连接数和TCP连接状态 2013-01-17
- [分享]VPS主机,VPS服务器推荐 2012-11-16
- [原创]vmware提示:此虚拟机似乎正在使用中,取得该虚拟机的所有权失败错误 2012-10-27
- [分享]类似/dev/null 2>&1 |grep "Apache is running." > /dev/null的说明 2012-10-17
- [分享]SSH无密码登陆远程LINUX主机的两种方法ssky-keygen + ssh-copy-id 2012-10-11
- [分享]tsung报告report.html部分参数说明 2012-09-20
- [分享]tar压缩和解压缩用法 2012-09-17
发表评论: