eps导出问题与Python和matplotlib

时间:2017-04-25 20:13:29

标签: python matplotlib words eps

从matplot lib导出eps文件时遇到问题。我想在Corel中编辑一个从matplotlib导出的eps文件,例如:

plt.savefig('test01.eps', format='eps', dpi=600)

在corel中打开文件后,我得到以下图片

enter image description here

可以看出,字母存在问题。它们的进口尺寸和位置错误;它们也被转换为曲线(虽然我已经明确地告诉Corel导入as文本)。

使用Microsoft Words导入eps文件会产生相同的结果。这似乎是一个matplotlib问题。

我尝试使用

更改为Qt4Agg
mpl.use('Qt4Agg') 
font = {'family' : 'Times New Roman','weight' : 'normal','size': 12}
mpl.rc('font', **font)

但它不起作用......

任何人有同样的问题吗?

1 个答案:

答案 0 :(得分:1)

添加这两行:

.roboto {
  font-family: 'Roboto-Regular';
}