【发布时间】:2011-06-15 19:07:13
【问题描述】:
谁能解释一下为什么下面的代码在设置图形的facecolor时不起作用?
import matplotlib.pyplot as plt
# create figure instance
fig1 = plt.figure(1)
fig1.set_figheight(11)
fig1.set_figwidth(8.5)
rect = fig1.patch
rect.set_facecolor('red') # works with plt.show().
# Does not work with plt.savefig("trial_fig.png")
ax = fig1.add_subplot(1,1,1)
x = 1, 2, 3
y = 1, 4, 9
ax.plot(x, y)
# plt.show() # Will show red face color set above using rect.set_facecolor('red')
plt.savefig("trial_fig.png") # The saved trial_fig.png DOES NOT have the red facecolor.
# plt.savefig("trial_fig.png", facecolor='red') # Here the facecolor is red.
当我使用fig1.set_figheight(11) fig1.set_figwidth(8.5) 指定图形的高度和宽度时,这些由命令plt.savefig("trial_fig.png") 拾取。但是,facecolor 设置没有被拾取。为什么?
感谢您的帮助。
【问题讨论】:
标签: python matplotlib