Can convert jpg but not tif
Posted: 2009-03-13T00:01:32-07:00
Can someone please tell me why it works to convert jpg files but not tif files. When I run this code on my webhost it creates logo1.jpg from logo.jpg But it will not create logo1.tif
The tif file is only 48K in size so it should not be a memory problem. My webhost is running
ImageMagick version 6.2.6
PHP imagick version 0.9.11
Strange...
The tif file is only 48K in size so it should not be a memory problem. My webhost is running
ImageMagick version 6.2.6
PHP imagick version 0.9.11
Strange...
Code: Select all
<?php
$exec = "/usr/bin/convert 'logo.jpg' 'logo1.jpg' $yaks ";
exec($exec, $yaks);
print_r ($yaks);
$exec = "/usr/bin/convert 'logo.tif' 'logo1.tif' $yaks ";
exec($exec, $yaks);
print_r ($yaks);
?>