(self, pointa, pointb)
| 16588 | return val |
| 16589 | |
| 16590 | def extractSelection(self, pointa, pointb): |
| 16591 | a = JM_point_from_py(pointa) |
| 16592 | b = JM_point_from_py(pointb) |
| 16593 | found = mupdf.fz_copy_selection(self.this, a, b, 0) |
| 16594 | return found |
| 16595 | |
| 16596 | def extractText(self, sort=False) -> str: |
| 16597 | """Return simple, bare text on the page.""" |
no test coverage detected