hi there,
can anybody tell me how to install imagemagick under xampp for windows?
thanks
imagemagick under xampp 1.7.4
-
- Posts: 1
- Joined: 2011-09-07T08:36:31-07:00
- Authentication code: 8675308
Re: imagemagick under xampp 1.7.4
Was quite straight forward when I did it.
Download and install XAMPP
Download and install ImageMagick - http://www.imagemagick.org/script/binar ... hp#windows
( may need to restart PC ):
1.Start XAMPP
2.Run this code in your browser to prove it is installed and working.
<?php
header("Content-Type: text/plain");
system("convert -version");
?>
3.Use the code like this and run it in your browser:
<?php
exec("convert input.jpg -thumbnail 100x100 output.jpg");
?>
Note: You will need to use " not ' when using draw or annotate as this is a windows installation. The " will need escaping if you are writing the code like exec("convert ......
localhost must be running for the code to work.