` #!/bin/bash
echo
echo -n "Image to use: "
read -e infile
echo
echo -n "Text color: "
read -e fill
echo
echo -n "Font size: "
read font
echo
echo -n "Text location - North, Southeast etc..: "
read gravity
echo
echo -n "Text file to use: "
read -e textfile
echo
echo -n "Prefix for outfile: "
read outfile
echo
convert $infile -fill $fill -pointsize $font -gravity $gravity -annotate 0 @$textfile $outfile.png
`
No comments, yet...