Convert PDF to PNG with enough resolution

Tuesday, March 28, 2017 · 1 minute · 70 words

ImageMagick logo

As ‘man convert’ states :

The convert program is a member of the ImageMagick suite of tools. Use it to convert between image formats as well as resize an image, blur, crop, despeckle, dither, draw on, flip, join, re-sample, and much more.

I use it to convert a pdf file to png picture with enough pixel density for the screen. This is the command :

convert -density 100 source.pdf target.png
console howto ImageMagick linux shell