#!/bin/bash
# Converts a single pdf page from the big Colossus249 pdf file to a jpeg.
#
# Syntax:
#	paul249.sh Infile Outfile 

if test -f $2
then
	echo File $2 already exists
else
	echo "Processing $1 -> $2"
	convert -density 200 $1 $3 $4 $5 $6 $7 $8 $9 $2
fi

