本文主要是介绍matplotlib保存eps出错:'latin-1'codec can't encode characters in position 9-12:ordinal not in range(256),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
原因:保存路径含有中文。
matplotlib保存eps的两种方法:
1. 图片右上角保存按钮
2. 代码方式
out_fig = plt.gcf()
out_fig.savefig('out.eps', format='eps', dpi=1000)
这篇关于matplotlib保存eps出错:'latin-1'codec can't encode characters in position 9-12:ordinal not in range(256)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!