Wand contains no images `MagickWand-3'

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
djo

Wand contains no images `MagickWand-3'

Post by djo »

Hi,


I have installed the php extension 2.3.0 imagick and i had the error Wand contains no images `MagickWand-3' when i want to resize an image.
On my local post i have the version 2.1.1-rc1 and i don't have this pb.

This is my code to resize an image :
$im = new Imagick ();
//$im->pingimage($image);
$im->readImage ( $image );
$im->thumbnailImage ( $heightMax, $widthMax, true );
$im->writeImage ( $pathOfImageToResize . $nameOfImageToResize );
$im->destroy ();

My image is not resized i have the message Wand contains no images `MagickWand-3'.

Hve you ideas ?

Thanks

Djo
Post Reply