ImageMagick & OS X 10.5 Server

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
Bonzo
Posts: 2971
Joined: 2006-05-20T08:08:19-07:00
Location: Cambridge, England

Re: ImageMagick & OS X 10.5 Server

Post by Bonzo »

I would have checked out the SlideShowPro Director forum first there are a few posts about ImageMagick installations there.

If you can run some php code this will give you the path and you then need to put it into define('MAGICK_PATH', 'C:\Program Files\ImageMagick-6.3.5-Q16\convert.exe');

Code: Select all

<?php
echo "<pre>";
system("type convert"); 
echo "</pre>";
?> 
Post Reply