python安装simhei字体
时间: 2023-11-08 14:06:08 浏览: 601
SimHei字体支持资源包
要在Python中使用SimHei字体,需要先安装该字体并将其添加到系统字体库中。以下是在Windows系统中安装SimHei字体的步骤:
1. 下载SimHei字体文件(.ttf格式),可以从网上搜索下载。
2. 将下载的字体文件复制到Windows系统的字体目录下,一般为C:\Windows\Fonts。
3. 在Python代码中使用该字体,示例代码如下:
```
import matplotlib.pyplot as plt
from matplotlib.font_manager import FontProperties
font = FontProperties(fname=r"C:\Windows\Fonts\simhei.ttf", size=14)
plt.title("中文标题", fontproperties=font)
plt.show()
```
阅读全文