我试图导出多个图以在Adobe Illustrator中进行编辑,并且试图将标题,轴标签和条形图标签设置为单独的文本字段。例如,如果我在Illustrator(或您选择的编辑器)中单击标题,则整个标题都是其自己的字段。
这是我不带文本字段的矢量图形导出方式:
plt.bar(x_data, y_data)
plt.title('Fancy Title')
plt.xlabel('Informative X label')
plt.ylabel('Felicitous Y label')
plt.draw()
fig.savefig(savepath, bbox_inches='tight', format='svg')
plt.show()
这会输出漂亮的矢量图形,但是我不能将文本编辑为字段。我可以通过文本转换软件来运行它,但是这样可以稍微移动文本,使所有内容消失,并将字体检测留给软件。
答案 0 :(得分:3)
尝试以下几行:
import matplotlib as mpl
mpl.rcParams['pdf.fonttype'] = 42
mpl.rcParams['ps.fonttype'] = 42
根据我的经验,默认字体类型是不可编辑的,但是这是一种。
答案 1 :(得分:2)
您可以将svg字体类型设置为none:
Shape shape = new Circle
以下内容也适用:
import matplotlib.pyplot as plt
plt.rcParams['svg.fonttype'] = 'none'