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

Popular posts from this blog

php - mySql Join with 4 tables -

css - Text drops down with smaller window -

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -