要确定以像素为单位的轴大小,我们可以采取以下步骤 -
使用subplots()method、fig和ax创建一个图形和一组子图 。
要获取 DPI,请使用 fig.dpi。打印详细信息。
在显示框中找到边界框。
使用bbox.width和bbox.height找到宽度和高度。
打印宽度和高度。
from matplotlib import pyplot as plt fig, ax = plt.subplots() print("Dot per inch(DPI) for the figure is: ", fig.dpi) bbox = ax.get_window_extent().transformed(fig.dpi_scale_trans.inverted()) width, height = bbox.width, bbox.height print("Axis sizes are(in pixels):", width, height)输出结果
Dot per inch(DPI) for the figure is: 100.0 Axis sizes are(in pixels): 4.96 3.696