tip@trylinux:~/blog$ cat convert-is-awesome.md
# convert is awesome
Author: tip
Date: 2007-10-19 00:00:00
Tags: linux, tips, tools

Someone was asking how to convert PDFs to JPGs and I thought to myself, surely there is a Linux utility to do this. Well ImageMagick comes with a utility called convert and the syntax is really easy.

convert test.pdf test.jpg

This will create a jpeg for each page of the pdf. Simple right? Plus it supports many input and output formats.

EOF