The nuance is that edges of the words in white would go beyond the edge of the circle. Therefore, a mask would be needed to chop off the edges of the words that extend beyond the perimeter of the circle.
The image I'm trying to generate would be the YSI logo shown in the header of the following site: pacamp.ysi.org
I have tried the following command to generate the logo (image):
Code: Select all
convert -size 400x400 xc:transparent \
-draw "fill blue circle 200,200 200,0 \
font Times-Bold font-size 310 \
fill white \
translate 45,300 text 0,0 'ysi'" \
-flatten ysi_logo.png
Thanks in advance.