Page 1 of 1

Insert text over an image within a circle

Posted: 2018-07-10T04:09:18-07:00
by avinashkarhana
I am trying to add text over an image with circular border.(a text insie of circle)
something likeImage

using ImageMagick-7.0.8-Q16 onn windows

Re: Insert text over an image within a circle

Posted: 2018-07-10T07:44:47-07:00
by snibgo
Read an image, then draw a circle, then write the text. For example:

Code: Select all

magick toes.png -draw "translate %[fx:w/2],%[fx:h/2] circle 0,0 0,100" -gravity Center -fill White -annotate 0 "Hello world" circtext.jpg
Image