编程语言
首页 > 编程语言> > python_matplotlib_中文字体

python_matplotlib_中文字体

作者:互联网

python_matplotlib_中文字体

转载注明来源: 本文链接 来自osnosn的博客,写于 2021-07-30.

参考

下载字体

在matplotlib中设置局部字体

import matplotlib.font_manager
font_zh=matplotlib.font_manager.FontProperties(fname='./SimHei.ttf')
...
plt.title('直方图数据分析与展示',fontproperties=font_zh)

临时注册/载入字体

import matplotlib.font_manager
matplotlib.font_manager.fontManager.addfont('./SimHei.ttf')
plt.rcParams['font.family']='SimHei'
...
plt.title('直方图数据分析与展示')

转载注明来源: 本文链接 https://www.cnblogs.com/osnosn/p/15368381.html
来自 osnosn的博客 https://www.cnblogs.com/osnosn/ .


标签:SimHei,python,manager,matplotlib,中文字体,字体,osnosn,font
来源: https://www.cnblogs.com/osnosn/p/15368381.html