私はテキストの幅を取得する方法を知っている:埋め込みバウンディングボックスを含むmatplotlibテキストの幅を取得する方法は?
import matplotlib.pyplot as plt
from matplotlib.patches import BoxStyle
xpos, ypos = 0, 0
text = 'blah blah'
boxstyle = BoxStyle("Round", pad=1)
props = {'boxstyle': boxstyle,
'facecolor': 'white',
'linestyle': 'solid',
'linewidth': 1,
'edgecolor': 'black'}
textbox = plt.text(xpos, ypos, text, bbox=props)
plt.show()
textbox.get_bbox_patch().get_width() # 54.121092459652573
をしかし、これは考慮にパディングを取ることはありません。実際、パディングを0に設定すると、同じ幅になります。
boxstyle = BoxStyle("Round", pad=0)
props = {'boxstyle': boxstyle,
'facecolor': 'white',
'linestyle': 'solid',
'linewidth': 1,
'edgecolor': 'black'}
textbox = plt.text(xpos, ypos, text, bbox=props)
plt.show()
textbox.get_bbox_patch().get_width() # 54.121092459652573
私の質問は、周囲のボックスの幅をどのように取得できますか?またはFancyBoxPatchの場合、どのようにパディングのサイズを取得できますか?
ありがとうございました:-)私はこれを探していました。 –