我想知道如何准确计算matplotlib.Text的大小。
# this gives the position of the center of the text in the figure
xy = text.get_position()
# text size like in axes.get_position()
[left, bottom, width, height] = text.???
对于文本,它可能会更复杂,因为一切都取决于字体,fontsize等。我以为我可以使用text.get_bbox_patch()
或text.get_clip_box()
但都返回无
答案 0 :(得分:0)
text.get_window_extent()是要走的路。
由于某些原因,text.get_bbox_path()始终返回无