python - matplotlib text logo - change width -
i trying create logo (in matplotlib) looks this-
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
Post a Comment