参见英文答案 In Matplotlib, is there a way to know the list of available output format3个 documentation of savefig() function表示支持的文件格式列表取决于使用的后端.如何获取特定后端支持的图像格式列表?
documentation of
savefig()
function表示支持的文件格式列表取决于使用的后端.如何获取特定后端支持的图像格式列表?
你只需要问画布:
plt.gcf().canvas.get_supported_filetypes()
要么
plt.gcf().canvas.get_supported_filetypes_grouped()
documentation