The convert -list font command shows these Verdana family fonts:
Code: Select all
Utopia-Regular Utopia Normal Normal 400
Verdana-Bold Verdana Normal Normal 700
Verdana-Bold-Italic Verdana Italic Normal 700
Verdana-Italic Verdana Italic Normal 400
Verdana-Regular Verdana Normal Normal 400
Webdings-Regular Webdings Normal Normal 400
Code: Select all
~$ convert -font Verdana label:abcdef xxx.jpg
convert: unable to read font `Verdana'.
Code: Select all
$ convert -family Verdana label:abcdef xxx.jpg
Code: Select all
$ convert -size 354x106 text01.mvg text01.gif
convert: unable to read font `/Library/Fonts/Verdana'.
convert: unable to read font `/Library/Fonts/Verdana'.
Code: Select all
push graphic-context
push defs
push clip-path 236910
push graphic-context
path 'M0,0 l354.330708661417,0 l0,106.299212598425 l-354.330708661417,0 l0,-106.299212598425z'
pop graphic-context
pop clip-path
pop defs
clip-path 236910
scale 0.354330708661417,0.354330708661417
push graphic-context
fill "blue"
font-family 'Verdana'
font-size 55
text 250.0,150.0 'Hello, out there'
pop graphic-context
push graphic-context
fill "red"
circle 250,150 255,150
pop graphic-context
push graphic-context
fill "none"
stroke "blue"
rectangle 0,0 997,297
pop graphic-context
pop graphic-context
Please let me know if you need any other information.