Page 1 of 1

pdf to jpg - how obtain best quality ?

Posted: 2009-05-15T01:51:51-07:00
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.

Re: pdf to jpg - how obtain best quality ?

Posted: 2009-05-15T03:47:41-07:00
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

Re: pdf to jpg - how obtain best quality ?

Posted: 2009-05-15T09:13:18-07:00
by fmw42