Page 1 of 1

Re: multiline text with different font sizes

Posted: 2008-04-09T04:55:05-07:00
by Bonzo
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:

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

Re: multiline text with different font sizes

Posted: 2008-04-09T10:52:47-07:00
by fmw42
Just a point of convention. The convert syntax usually has the input image right after "convert" and not at the end of the command line.

convert input ...options... output