To create image thumbnails from a PDF document, run this in a terminal window:
convert -thumbnail x300 -background white -alpha remove input_file.pdf[0] output_thumbnail.png
for f in *.pdf; do convert -thumbnail x300 -background white -alpha remove "$f"[0] "${f%.pdf}.png"; done