This question already has answers here:
In Matplotlib, is there a way to know the list of available output format
(3个答案)
已关闭8年。
documentation of
或者
documentation
(3个答案)
已关闭8年。
documentation of
savefig()
function表示支持的文件格式列表取决于所使用的后端。如何获得特定后端支持的此图像格式列表? 最佳答案
您只需要询问canvas
:
plt.gcf().canvas.get_supported_filetypes()
或者
plt.gcf().canvas.get_supported_filetypes_grouped()
documentation
10-04 20:48