所以我在 Python 2.7.5 :: Anaconda 1.7.0 (64-bit) 中使用 matlibplot 我的 matlibplot.rc 文件中唯一未注释的行是:
figure.figsize : 10, 5 # figure size in inches
figure.dpi : 80 # figure dots per inch
figure.facecolor : 1 # figure facecolor; 0.75 is scalar gray
savefig.dpi : 80 # figure dots per inch
savefig.facecolor : white # figure facecolor when saving
如果我打电话:
plt.savefig(name, bbox_inches=0)
plt.show()
一切正常
节目输出:
savefig 的输出:
但是,如果我简单地注释掉显示行,相同的文件看起来像这样:
这是怎么回事???我怎样才能解决这个问题?