#!/bin/bash DEST="$1" TEXT="$2" HEIGHT="$3" : ${HEIGHT:=22} convert \ -size 1000x200 xc:none -font El_Abogado_Loco.ttf \ -pointsize "$HEIGHT" -channel RGBA \ -fill black \ -stroke black -strokewidth 8 -annotate +25+65 "$TEXT" -blur 0x1.5 \ -fill gold -stroke none -annotate +25+65 "$TEXT" \ -trim +repage \ "$DEST"