Get the name of the glyph, i.e., ord(';') is 'semicolon'.
(self, # For consistency with FT2Font.
glyph_ind: GlyphIndexType)
| 411 | return left, miny, total_width, maxy - miny, -miny |
| 412 | |
| 413 | def get_glyph_name(self, # For consistency with FT2Font. |
| 414 | glyph_ind: GlyphIndexType) -> str: |
| 415 | """Get the name of the glyph, i.e., ord(';') is 'semicolon'.""" |
| 416 | return self._metrics[cast(CharacterCodeType, glyph_ind)].name |
| 417 | |
| 418 | def get_char_index(self, # For consistency with FT2Font. |
| 419 | c: CharacterCodeType) -> GlyphIndexType: |
no outgoing calls