当前位置:  开发笔记 > 前端 > 正文

输出matplotlib图到SVG,文本为文本,而不是曲线

如何解决《输出matplotlib图到SVG,文本为文本,而不是曲线》经验,为你挑选了1个好方法。



1> zliw..:

Matplotlibs SVG文本渲染可以在matplotlibrc或代码中配置.来自http://matplotlib.org/users/customizing.html:

#svg.fonttype : 'path'         # How to handle SVG fonts:
#    'none': Assume fonts are installed on the machine where the SVG will be viewed.
#    'path': Embed characters as paths -- supported by most SVG renderers
#    'svgfont': Embed characters as SVG fonts -- supported only by Chrome,
#               Opera and Safari

这转换为以下代码既不嵌入字体也不将文本呈现为路径:

import matplotlib.pyplot as plt
plt.rcParams['svg.fonttype'] = 'none'

推荐阅读
乐韵答题
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有