将字体文件拷贝到任意目录
fonts = matplotlib.font_manager.FontProperties(fname='/home/prefer/Fonts/simhei.ttf', size=23) ... plt.title("标题",fontproperties=fonts) ... plt.plot(x, y, label=u'图例') ... plt.legend(prop=fonts)
将字体文件拷贝到任意目录
fonts = matplotlib.font_manager.FontProperties(fname='/home/prefer/Fonts/simhei.ttf', size=23) ... plt.title("标题",fontproperties=fonts) ... plt.plot(x, y, label=u'图例') ... plt.legend(prop=fonts)