The FreeType index of this glyph (that can be passed to FT_Load_Glyph).
(self)
| 82 | |
| 83 | @property |
| 84 | def index(self): |
| 85 | """ |
| 86 | The FreeType index of this glyph (that can be passed to FT_Load_Glyph). |
| 87 | """ |
| 88 | # See DviFont._index_dvi_to_freetype for details on the index mapping. |
| 89 | return self.font._index_dvi_to_freetype(self.glyph) |
| 90 | |
| 91 | font_path = property(lambda self: self.font.resolve_path()) |
| 92 | font_size = property(lambda self: self.font.size) |