Re: multiline text with different font sizes
Posted: 2008-04-09T04:55:05-07:00
You can rotate with annotate : http://www.imagemagick.org/script/comma ... p#annotate you can also use -gravity with annotate.
I would guess you want something like:
I would guess you want something like:
Code: Select all
convert -font Helvetica-Bold -pointsize 24 -fill red -gravity center -annotate 40x40+0+0 'Big text' -pointsize 18 -gravity center -annotate 40x40-20+0 'medium text' -pointsize 12 -gravity center -annotate 40x40+20+0 'small text' bg.gif out.gif