我正在尝试在某些线条的边界内绘制一些文本。线条可以旋转,因此文本也需要旋转。
当我添加文本而不旋转时,它似乎具有正确的位置和大小。但是,旋转后不会旋转(查看图片时会得到最好的解释)。
这是我尝试过的:
import matplotlib.pyplot as plt
import numpy as np
fig, ax = plt.subplots(1)
fig.set_dpi( 100 )
fig.set_size_inches( 1, 1 )
# Plot diagonal line (45 degrees)
ax.plot((0, 0),(0, 10))
ax.plot((10, 10), (0, 10))
ax.plot((0, 10), (10, 10))
ax.plot((0, 10), (0, 0))
ax.plot((0,10),(1.3,1.3)) # font size 10 has 13 pixels, hence 1.3
ax.plot((3,10),(3,10))
# compute the offset of the line that is exactly 1.3 above the diagonal
d = np.array([-1,1])
d = d / np.sqrt(sum(d**2)) * 1.3
u = np.array([3,3]) + d
ax.plot( (u[0], 10+u[0]-u[1]), (u[1], 10 ))
# set limits so that it no longer looks on screen to be 45 degrees
ax.set_xlim([0, 10])
ax.set_ylim([0, 10])
# Plot text
ax.text(0,0, 'In', fontsize=10 )
ax.text(4,0, 'Bbox', fontsize=10, bbox={"pad":0} )
ax.text(3,3, 'Out', fontsize=10, rotation=45, verticalalignment="bottom", \
horizontalalignment="left", rotation_mode="anchor" )
ax.text(6,6, 'Bbox', fontsize=10, rotation=45, verticalalignment="bottom", \
horizontalalignment="left", rotation_mode="anchor",bbox={"pad":0} )
plt.axis("off")
plt.savefig( "test.pdf", bbox_inches="tight" )
这给了我以下输出。使用旋转但偏移的文本进行绘图:
请注意,“ Out”不完全符合其预期的相邻两行。 有人对如何调整/解决这个问题有想法吗?
答案 0 :(得分:1)
对于"In"
文本,请使用verticalalignment="baseline"
(暗示,因为它是默认值)。对于"Out"
文本,请改用verticalalignment="bottom"
。
您也可以将其更改为verticalalignment="baseline"
,或者将其完全删除。
ax.text(0,0, 'In', fontsize=10 )
ax.text(4,0, 'Bbox', fontsize=10, bbox={"pad":0} )
ax.text(3,3, 'Out', fontsize=10, rotation=45,
horizontalalignment="left", rotation_mode="anchor" )
ax.text(6,6, 'Bbox', fontsize=10, rotation=45,
horizontalalignment="left", rotation_mode="anchor",bbox={"pad":0} )
在matplotlib网站上有一个很好的例子Demo text rotation mode,解释了这种行为。