Code: Select all
<?php
echo "<pre>";
system("convert -version");
echo "</pre>";
?>
...i have the correct output. But if i check my phpinfo i'm not able to find ImageMagick. For example if i run this code...
Code: Select all
<?php
header('Content-type: image/jpeg');
$image = new Imagick('image.jpg');
// If 0 is provided as a width or height parameter,
// aspect ratio is maintained
$image->thumbnailImage(100, 0);
echo $image;
?>
What's the problem