xampp and ImageMagick on Vista

MagickWand for PHP is an object-oriented PHP interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning MagickWand for PHP.
Post Reply
Bonzo
Posts: 2971
Joined: 2006-05-20T08:08:19-07:00
Location: Cambridge, England

Re: xampp and ImageMagick on Vista

Post by Bonzo »

I use Imagemagick with XAMPP and XP.

I downloaded and installed Imagemagick from here: http://www.imagemagick.org/script/binar ... hp#windows

Restarted XAMPP and when I ran this program in localhost it worked OK.

Code: Select all

<?php 
header("Content-Type: text/plain"); 
system("convert -version"); 
?> 
If you are talking about Imagick you will need to uncoment this line on the php.ini file in the Apache folder.

Code: Select all

extension=php_imagick.dll
If you want to run MagickWand for php I have no idea.
Post Reply