Posts Tagged ‘image’
Convert PDF to images in Linux
By chys on December 11th, 2010Just use convert, the universal image converter shipped with ImageMagick.
convert a.pdf a.png
And we get as many PNG files as there are pages in the PDF. They converted files are named a-0.png, a-1.png, …
We can also use it the other way around:
convert a.jpg b.png c.gif abc.pdf
This will combine the three images into one PDF file. Very flexible.
