如何获取 Matplotlib 当前可用所有字体的列表?


若要获取 Matplotlib 当前可用所有字体的列表,我们可以使用font_manager.findSystemFonts() 方法。

步骤

  • 打印一条语句。

  • 使用 font_manager.findSystemFonts() 方法获取可用字体的列表。

范例

from matplotlib import font_manager

print("List of all fonts currently available in the matplotlib:
") print(*font_manager.findSystemFonts(fontpaths=None, fontext='ttf'), sep="
")

输出

/usr/share/fonts/truetype/Nakula/nakula.ttf
/usr/share/fonts/truetype/ubuntu/Ubuntu-L.ttf
/usr/share/fonts/truetype/tlwg/Loma-BoldOblique.ttf
.................................................................
............................................................................
.................................................................................
........
/usr/share/fonts/truetype/lohit-malayalam/Lohit-Malayalam.ttf
/usr/share/fonts/truetype/tlwg/TlwgTypist-Oblique.ttf
/usr/share/fonts/truetype/liberation2/LiberationMono-Bold.ttf

更新日期:06-5-2021

3K+ 浏览量

开启您的 职业生涯

完成课程,取得认证

入门
广告