hi , i have installed image magic and i try to use this code :
<?
$handle = imagick_readimage( "index1.jpg" ) ;
//
// Resize the image to absolute 100x100.
//
imagick_zoom( $handle, 100, 100, "!" ) ;
$image_data = imagick_image2blob( $handle ) ;
header( "Content-type: " . imagick_getmimetype( $handle ) ) ;
print $image_data ;
?>
but i recieve this error
Fatal error: Call to undefined function: imagick_readimage() in /home/mm.php on line 2
can you please help me ?!



LinkBack URL
About LinkBacks
Reply With Quote






