python - matplotlib text logo - change width -


i trying create logo (in matplotlib) looks this-

1

the 2 letters have different heights have same width , stacked 1 above other.

when try,

ax = fig.add_axes([0., 0., 1., 1.]) ax.text(x, y1, 'c', fontsize=40) ax.text(x, y2, 't', fontsize=20) 

't' smaller in both height , width.

is there way create 'text' in matplotlib specific height , width? assuming there alternate way (other fontsize) define overall dimensions of matplotlib text area.


Comments

Popular posts from this blog

jsf - "PropertyNotWritableException: Illegal Syntax for Set Operation" error when setting value in bean -

arrays - Algorithm to find ideal starting spot in a circle -

php - Autoloader issue not returning Class -