I got imagemagick installed and it irsrunning. I ran a test script and it does what it is suppossed to.
<?
$command = "/usr/local/bin/convert -geometry 35% big.jpg jpeg:-";
$imagedata = $command;
$expired = gmdate("D, d M Y H:i:s",(time() + 3600)." GMT");
header("Expires: $expired");
header("Content-type: image/jpeg");
print $imagedata;
?>
But when I try and do other commands, nothing works. Only convert seems to be working. I have gone through imagemagicks site and no luck.
But some of the other commands work fine from the command line. Like mogrif.
I tried to use exec and system to get them to work in my PHP script, but no luck.
If you have any suggestions please let me know.
Regards,
Kody