#! /bin/sh # to find fonts for ImageMagick: # convert -list font # # to see what you can do with them: # convert -list type # I've broken the command into smaller steps # by using "\" at the end of each line so # the one command continues over many lines. convert -size 320x150 xc:white \ -font "O'Connor-Regular" \ -pointsize 72 -fill "#80c0ff" \ -annotate +70+70 'flying' \ -motion-blur 40x120+310 \ -background white \ -rotate 270 \ -wave 3x35 \ -rotate -270 \ -gravity center \ -crop 320x150+0+0 \ +repage +gravity \ -fill "#99eeff" \ -stroke "#cc0000" \ -annotate +70+70 'flying' \ flying.jpg