누군가 그림의 얼굴 색상을 설정할 때 아래 코드가 작동하지 않는 이유를 설명해 주시겠습니까?
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 설정은 선택되지 않습니다. 왜?
당신의 도움을 주셔서 감사합니다.
transparent=True
제공하는 경우 왜 사용facecolor
합니까?