Get width of TTF text in pixels.
(self, text, font_path, font_size)
| 416 | return _lib.pager_draw_ttf(x, y, text.encode(), color, font_path.encode(), font_size) |
| 417 | |
| 418 | def ttf_width(self, text, font_path, font_size): |
| 419 | """Get width of TTF text in pixels.""" |
| 420 | return _lib.pager_ttf_width(text.encode(), font_path.encode(), font_size) |
| 421 | |
| 422 | def ttf_height(self, font_path, font_size): |
| 423 | """Get height of TTF font in pixels.""" |
no test coverage detected