(self)
| 478 | return self.descent * self.vscale |
| 479 | |
| 480 | def get_width(self): |
| 481 | w = self.bbox[2]-self.bbox[0] |
| 482 | if w == 0: |
| 483 | w = -self.default_width |
| 484 | return w * self.hscale |
| 485 | def get_height(self): |
| 486 | h = self.bbox[3]-self.bbox[1] |
| 487 | if h == 0: |