如何获取 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
广告