python Pillow 中是否有一些默认字体 (ttf)?

Are there some default fonts (ttf) in python Pillow?

在 Pillow (PIL Fork) 的文档中。 ImageDraw module tutorial 中提到了一种字体类型,即“FreeMono”,例如 fnt = ImageFont.truetype("Pillow/Tests/fonts/FreeMono.ttf", 40).

似乎可以在机器上本地获取其他字体的 ttf 并将其与 Pillow 一起使用,但我想知道是否有任何其他测试字体(“FreeMono”除外)用于测试和使用此工具,喜欢一些更粗的字体等?

当然可以:

Pillow/Tests/fonts/ArefRuqaa-Regular.ttf
Pillow/Tests/fonts/DejaVuSans.ttf
Pillow/Tests/fonts/AdobeVFPrototype.ttf
Pillow/Tests/fonts/KhmerOSBattambang-Regular.ttf
Pillow/Tests/fonts/NotoSansSymbols-Regular.ttf
Pillow/Tests/fonts/FreeMono.ttf
Pillow/Tests/fonts/NotoNastaliqUrdu-Regular.ttf
Pillow/Tests/fonts/DejaVuSans-bitmap.ttf
Pillow/Tests/fonts/TINY5x3GX.ttf

在存储库中搜索:

find . -name "*.ttf"