How to convert PDF to png

teminalRecently I had the need to convert a .PDF file with many pages to individual .PNG files.

On the folder where the PDF were, I typed in the terminal:

for i in *.pdf ; do convert "$i" "${i%.*}.png" ; done
Comments are closed.