1
justou 2016-11-02 12:45:21 +08:00 3
这样的?
# -*- coding: utf-8 -*- import matplotlib.pyplot as plt from matplotlib.font_manager import FontProperties song_ti = FontProperties(fname=r'C:\Windows\Fonts\simsun.ttc', size=20) times_new_roman = FontProperties(fname=r'C:\Windows\Fonts\times.ttf', size=15) ax = plt.gca() ax.set_title(u'能量随时间的变化', fontproperties=song_ti) ax.set_xlabel('Time (s)', fontproperties=times_new_roman) ax.set_ylabel('Energy (J)', fontproperties=times_new_roman) plt.show() |
2
wisefree OP @justou 如何得到 fonts 对应的文件名呢? simusun.ttc 在 fonts 文件夹下看不到
网上搜索了一下,请问用 python 能实现么? |
3
justou 2016-11-02 16:55:30 +08:00 1
C:\Windows\Fonts 文件夹下右键看属性, 没有属性的是字体系列, 双击打开它看里面每个字体文件的属性, 里面有该字体的名字。
|