Having problems with ImageMagick via php exec()
Posted: 2007-03-28T17:38:11-07:00
Any help would be appreciated...
If I run this command via a shell command it works.
When I call it via php it does nothing.
Platform: Mac OSX 10.4.5
PHP5
Latest version of ImageMagic
Thanks Ken...
If I run this command via a shell command it works.
Code: Select all
convert preview.jpg preview.png
Code: Select all
<?php
$convert = "convert preview.jpg preview.png";
exec($convert);
?>
PHP5
Latest version of ImageMagic
Thanks Ken...