I am trying to add text over an image with circular border.(a text insie of circle)
something like
using ImageMagick-7.0.8-Q16 onn windows
Insert text over an image within a circle
-
- Posts: 1
- Joined: 2018-07-10T03:29:25-07:00
- Authentication code: 1152
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Insert text over an image within a circle
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
snibgo's IM pages: im.snibgo.com