Reputation: 1
How to append a label under an image with a font size?
convert image.png -label "Test label" -pointsize 100 -gravity center -append image.png
Upvotes: 3
Views: 1964
Reputation: 208013
Like this:
convert image.png -pointsize 36 label:"Test label" -gravity center -append result.png
When you use xc:
, label:
, pattern:
and gradient:
(i.e. all the ones with no dash at the start and a colon at the end), ImageMagick creates a canvas for you to put the data on.
Upvotes: 4