Imagick is displaying blank images with php -
i installed imagick , checked make sure class exists etc. can count images in tiffs , other things. however, cant display image. using following code :
header('content-type: image/jpg'); $image = new imagick(' ur jpg here '); $image->thumbnailimage(100, 100); echo $image; but displalys blank image. when @ html code produced this:
<html> <body style="margin: 0px;"> <img style="-webkit-user-select: none" src=" url page imagechange.php"> </body> </html> can explain why image not being displayed? above html appears image src php page using , not image.
Comments
Post a Comment