क्या कोई यह बता सकता है कि आकृति के फेसकोलर को सेट करते समय नीचे दिया गया कोड काम क्यों नहीं करता है?
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")
। हालांकि, फेसकॉलर सेटिंग नहीं ली गई है। क्यों?
आपकी सहायता के लिए धन्यवाद।
transparent=True
यदि आप प्रदान करते हैं तो आप इसका उपयोग क्यों करते हैंfacecolor
?