Return the font weight, e.g., 'Bold' or 'Roman'.
(self)
| 471 | return self.get_familyname() |
| 472 | |
| 473 | def get_weight(self) -> str: |
| 474 | """Return the font weight, e.g., 'Bold' or 'Roman'.""" |
| 475 | return self._header['Weight'] |
| 476 | |
| 477 | def get_angle(self) -> float: |
| 478 | """Return the fontangle as float.""" |
no outgoing calls