python中,使用matplotlib绘图时,图片上文字无法显示问题。

时间:2022-12-21 00:21:48

在使用python过程中,我们往往需要使用matplotlib进行图片的绘制,在绘图过程中,我们有时需要在图片上进行文字的显示,在使用过程中,会出现文字无法显示的问题。如下图:

python中,使用matplotlib绘图时,图片上文字无法显示问题。

遇到上述问题我们只需在代码中加入如下语句即可解决:

 

 from pylab import mpl
mpl.rcParams['font.sans-serif'] = ['SimHei']
如下图:
python中,使用matplotlib绘图时,图片上文字无法显示问题。