ImageMagick 6.6.6-0 2010-11-21 Q16
The version for imagick does not show with phpinfo().
I have imagick installed and working as far as I can tell running sample code using the default image 'magick:rose'. Except..
This does not work (php) using imagick
$im = new Imagick("rose2.jpg");
This does work (php) using ImageMagick
$image="rose2.jpg";
The time-out error using imagick includes
"The connection to the server was reset while the page was loading."
Phpinfo() lists:
upload_max_filesize = 32M
Post_max_size = 32M.
max_execution_time = 30
(rose2 is a copy of the stock rose image)
How do I get imagick to read the file?
Thanks in advance.
