Jump to content

ImageMagick


tablecat

Recommended Posts

Hi, I'm trying to thumbnail PDF using ImageMagick but I am unable because -thumbnail appears to do nothing.

 

I've tried this on a seperate free web host just to check if it wasn't just me messing up, and it worked.

 

It is also worth noting that I can, in fact, thumbnail images on this server. My only issue here is trying to thumbnail PDF files, which I haven't been able to on this server.

 

convert -thumbnail 200x200 -colorspace rgb -quality 70 test.pdf test.gif

 

I've tried other methods such as:

 

convert -size 200x200 -geometry 200x200! -colorspace rgb -quality 70 test.pdf test.gif

 

This does correctly thumbnail the PDF to the appropriate dimmensions, however, the image is all black!

 

I would like to know what the issue is here. Thanks.

Link to comment
Share on other sites

I don't have a pdf file to try so I can't say this works for sure. Try using the Imagick Class.

 

<?php
$thumb = new Imagick("your_image.pdf");
$thumb->thumbnailimage(200, 200, TRUE);
$thumb->setformat("gif");
$thumb->writeimage("thumb_nail.gif");
?>

 

Keeping it TRUE will produce a thumb that is proportional. Removing TRUE will force height and width.

 

 

 

Link to comment
Share on other sites

Also, how is PHP ImageMagick working without Ghostscript?

 

It doesn't because it has nothing to do with the programming language. ImageMagick uses Ghostscript for thumbnailing PDF files. ImageMagick is called by a covert command, which has nothing to do with programming language used to call the command in the first place. Observe:

 

[17-Sep-2009 15:41:58] PHP Fatal error:  Uncaught exception 'ImagickException' with message 'Postscript delegate failed '

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...