I think ImageMagick is installed, but can't get any response
Posted: 2011-10-26T06:50:41-07:00
Hi all
After days of trying I think I finally have ImageMagick and Imagick installed.
Im using MAMP 2 with PHP 5.3.6 on Mac OSX Lion.
If I test with phpInfo() I can see the Imagick.
If I try and test Imagick I don't get any response. I'm using this from php.net
All I get is this
Am I missing something?
Any help with this would be greatly appreciated.
After days of trying I think I finally have ImageMagick and Imagick installed.
Im using MAMP 2 with PHP 5.3.6 on Mac OSX Lion.
If I test with phpInfo() I can see the Imagick.
If I try and test Imagick I don't get any response. I'm using this from php.net
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>untitled</title>
</head>
<body>
<h1>test</h1>
<?php
header('Content-type: image/jpeg');
$image = new Imagick('test.jpg');
$image->adaptiveBlurImage(5,3);
echo $image;
?>
</body>
</html>
All I get is this
Am I missing something?
Any help with this would be greatly appreciated.