jLuger.de - Multiple PDF to PNG

A short command to convert all PDFs in a directory to PNG without a transparent background and even when the PDFs have more than one page.

for i in `ls *pdf`; do convert -alpha Off -density 300 $i $i.png; done