首页  编辑  

Python中Text使用中文字体的正确姿势

Tags: /Python/   Date Created:
Python matplotlib使用中文字体的正确方法:
首先在脚本头部
from matplotlib.font_manager import FontProperties

然后:
	font = FontProperties()
	font.set_name('Microsoft YaHei')
使用:
	 plt.text(0.02, 0.98, "℃", size=18, color='white',
         ha="left", va="top", fontproperties = font,
		 transform=ax.transAxes,
         bbox=dict(facecolor='black', alpha=0.4, pad=0.2, boxstyle="round", linewidth=0)
         )