5-tuple containing the fields read from the font file header. Also known as the offset table.
(self)
| 149 | |
| 150 | @lazyproperty |
| 151 | def _fields(self): |
| 152 | """5-tuple containing the fields read from the font file header. |
| 153 | |
| 154 | Also known as the offset table. |
| 155 | """ |
| 156 | # sfnt_version, tbl_count, search_range, entry_selector, range_shift |
| 157 | return self._stream.read_fields(">4sHHHH", 0) |
| 158 | |
| 159 | def _iter_table_records(self): |
| 160 | """ |
nothing calls this directly
no test coverage detected