gpt4 book ai didi

python - matplotlib 旋转文本有偏移量

转载 作者:行者123 更新时间:2023-12-01 08:49:25 28 4
gpt4 key购买 nike

我正在尝试在某些线条的边界内绘制一些文本。线条可以旋转,因此文本也需要旋转。

当我添加不旋转的文本时,它似乎具有正确的位置和大小。但旋转后,它不会(最好在看图片时解释)。

这是我尝试过的:

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" )

这给了我以下输出。使用旋转但偏移的文本进行绘图:

Plot with rotated but offset text

请注意,“Out”并不像预期的那样完全适合其两个相邻行。有人知道如何调整/解决这个问题吗?

最佳答案

对于“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} )

enter image description here

有一个很好的例子,Demo text rotation mode ,在 matplotlib 网站上,解释了这种行为。

关于python - matplotlib 旋转文本有偏移量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53189196/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com