标签: python matplotlib
documentation of savefig() function表示支持的文件格式列表取决于使用的后端。如何获取特定后端支持的图像格式列表?
savefig()
答案 0 :(得分:14)
您只需询问canvas:
canvas
plt.gcf().canvas.get_supported_filetypes()
或
plt.gcf().canvas.get_supported_filetypes_grouped()
documentation