如何检索Matplotlib savefig()函数支持的文件格式列表?

时间:2013-02-21 16:23:23

标签: python matplotlib

documentation of savefig() function表示支持的文件格式列表取决于使用的后端。如何获取特定后端支持的图像格式列表?

1 个答案:

答案 0 :(得分:14)

您只需询问canvas

plt.gcf().canvas.get_supported_filetypes()

plt.gcf().canvas.get_supported_filetypes_grouped()

documentation