请问,
是否可以打印出每种列出的字体具有的每种样式?所以我知道,例如 Arial 有 Bold、Regular、Italic 等等。谢谢!或者您会推荐一些其他工具来执行此操作吗?我在 Windows 7 上。
import matplotlib.font_manager
#help(matplotlib.font_manager)
fonts = [f.name for f in matplotlib.font_manager.fontManager.ttflist]
print(len(fonts))
for i in fonts:
print(i)
蓝山帝景
相关分类