码迷,mamicode.com
首页 > 其他好文 > 详细

加装 ImageMagick 性能更佳!

时间:2015-08-15 22:58:07      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:

1. 下载 Download ImageMagick

       以此文件ImageMagick-6.9.1-10-Q16-x64-dll-win进行,第二次开发的研发

2. 安装 Install ImageMagick

 例_D:\WampServer\bin\ImageMagick-6.6.3-Q16;或者说直接安装在网站wamp的根目录下;

3. 测试 Testing the Installation

如果不加入环境变量的话,可以先下面方式测试: 
Open the command prompt (Run->”CMD”->ENTER) and type in convert and press enter. You should see the help parameters of convert

4. 下载DLL Downloading the php_Imagick.dll

If you are using PHP 5.3.x , 找一个五三版本的DLL文件;我的是PHP 5.2.x,具体参考:php_5.2.x_imagick

 

5. 编辑 PHP.ini

下载的php_imagick_dyn-Q16.dll保存到

D:\WampServer\bin\php\php5.2.9-2\ext\

然后编辑 PHP.ini 
找到dll这里,加入下面的最后一行:

;extension=php_sybase_ct.dll
;extension=php_tidy.dll
;extension=php_xmlrpc.dll
;extension=php_xsl.dll
;extension=php_zip.dll
extension=php_imagick.dll

6. 重启Wamp

7. 通过查看phpinfo();

如果有imagick项应该成功了

8. 小测试

$im = new imagick( ‘a.jpg‘ );
// resize by 200 width and keep the ratio
$im->thumbnailImage( 200, 0);
// write to disk
$im->writeImage( ‘a_thumbnail.jpg‘ );


加装 ImageMagick 性能更佳!

标签:

原文地址:http://www.cnblogs.com/CodeShopMan/p/4733227.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!