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.
pdf to jpg - how obtain best quality ?
Re: pdf to jpg - how obtain best quality ?
I think if you add a density it is better:
Maybe adding a quality may help as well:
Code: Select all
convert -density 300 input.pdf output.jpg
Code: Select all
convert -density 300 input.pdf -quality 100 output.jpg