Return the list of available fonts.
(self)
| 1532 | return ret |
| 1533 | |
| 1534 | def get_font_names(self): |
| 1535 | """Return the list of available fonts.""" |
| 1536 | return list({font.name for font in self.ttflist}) |
| 1537 | |
| 1538 | def _find_fonts_by_props(self, prop, fontext='ttf', directory=None, |
| 1539 | fallback_to_default=True, rebuild_if_missing=True): |
no outgoing calls