在下面的代码中,我使用get_window_extent()
来获取文本标签的高度。我将图形dpi值设置为72 dpi,试图使屏幕显示和字体大小具有1:1的关系。我的期望是get_window_extent()
检索的值与文本点大小值匹配。
为了测试这个,我创建了一个循环来绘制一组增大的文本标签,我发现get_window_extent()
检索到的值与某些字体大小相匹配,但对其他字体大小则不匹配。
以下是以下代码生成的输出:
Font Size
Set Returned
9 9.0
10 10.0
11 10.0
12 13.0
13 13.0
14 14.0
15 15.0
16 15.0
17 18.0
18 18.0
看来图形dpi设置实际上不是72 dpi,或者get_window_extent()
方法有问题。
我在macOS 10.12.5上使用WXagg后端运行Matplotlib 1.5.0。任何关于为什么会发生这种情况的想法都会受到欢迎。
import matplotlib as mpl
mpl.use('wxagg')
import matplotlib.pyplot as plt
# points per inch
points_per_inch = 72
# set figure size in inches
myfsize = (8, 6)
# create figure and subplot axes matrix
myfig, ax = plt.subplots(1, 1, dpi=72, figsize=myfsize)
# adjust subplot spacing
plt.subplots_adjust(wspace=0.04, hspace=0.04, right=0.8,
bottom=0.1, top=0.9, left=0.125)
# draw canvase to get positions
plt.gcf().canvas.draw()
string = 'curve'
print
print 'Font Size'
print 'Set', '\t', 'Returned'
# loop over a range of font sizes and print retrieved font size
for i in range(10):
text_size = 9 + i
text_position = i / 10.0
txt = ax.text(0.0, text_position, string, fontsize=text_size,
transform=ax.transAxes)
plt.gcf().canvas.draw()
txt_height_display = txt.get_window_extent().height
print text_size, '\t', txt_height_display
plt.show()
答案 0 :(得分:0)
由于文本在屏幕像素上的离散化,在字体填充的像素数和字体大小之间可能总是存在偏差。这种偏差可能达到2像素 - 每边一个 因此,我不会因为你得到的结果而担心或沮丧。