pdf to jpg - how obtain best quality ?

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
myspacee
Posts: 153
Joined: 2007-06-14T02:09:35-07:00

pdf to jpg - how obtain best quality ?

Post by myspacee »

hello to all,
need help to pdf to jpg conversion.

now i'm running this simple command line:
convert input.pdf output.jpg

nice result but jpg is not so readable. which option i can add to obtain better output ?

thank you all for your time,

m.
Bonzo
Posts: 2971
Joined: 2006-05-20T08:08:19-07:00
Location: Cambridge, England

Re: pdf to jpg - how obtain best quality ?

Post by Bonzo »

I think if you add a density it is better:

Code: Select all

convert -density 300 input.pdf output.jpg
Maybe adding a quality may help as well:

Code: Select all

convert -density 300 input.pdf -quality 100 output.jpg
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: pdf to jpg - how obtain best quality ?

Post by fmw42 »

Post Reply