I am having an odd issue with ImageMagick.
In the same script, I have the following code:
$ct = system("convert -version");
echo $ct;
And that displays the following response:
Version: ImageMagick 6.6.0-4 2012-04-26 Q16 http://www.imagemagick.org Copyright: Copyright (C) 1999-2010 ImageMagick Studio LLC Features: OpenMP
However, when I attempt to do this:
$ct2 = system("convert -resize 800x600 test-image.jpg test-image2.jpg", $retval);
echo $retval;
It returns 1, but the image does not get resized. Shouldn't a second image be created, resized, under the file name "test-image2.jpg"? I checked the directory permissions, and they're set to 0777, so that shouldn't be the issue. Any idea what could be going on here?
sudo -u www-data convert -resize 800x600 test-image.jpg test-image2.jpg– Mike B Jun 4 '12 at 15:20