(self, rect)
| 16602 | return "".join([b[4] for b in blocks]) |
| 16603 | |
| 16604 | def extractTextbox(self, rect): |
| 16605 | this_tpage = self.this |
| 16606 | assert isinstance(this_tpage, mupdf.FzStextPage) |
| 16607 | area = JM_rect_from_py(rect) |
| 16608 | found = JM_copy_rectangle(this_tpage, area) |
| 16609 | rc = PyUnicode_DecodeRawUnicodeEscape(found) |
| 16610 | return rc |
| 16611 | |
| 16612 | def extractWORDS(self, delimiters=None): |
| 16613 | """Return a list with text word information.""" |
no test coverage detected