help help thanks

IMagick is a native PHP extension to create and modify images using the ImageMagick API. ImageMagick Studio LLC did not write nor does it maintain the IMagick extension, however, IMagick users are welcome to discuss the extension here.
Post Reply
Rlby

help help thanks

Post by Rlby »

<br />
<b>Fatal error</b>: Class 'Imagick' not found in <b>E:\www\1.php</b> on line <b>5</b><br />

WHY ???
thanks
qq240795663
ridera

Re: help help thanks

Post by ridera »

Would appear Imagick is not installed, or not installed correctly.

Try this:

Code: Select all


echo phpinfo(); Check if php list Imagick OK

if(!class_exists('Imagick')) 
die("$report<p style=\"color:red\">Imagick does not exist. Can't proceed</p>");
Post Reply