(path: Path, data: bytes)
| 241 | |
| 242 | |
| 243 | def save_image_bytes(path: Path, data: bytes) -> None: |
| 244 | path.parent.mkdir(parents=True, exist_ok=True) |
| 245 | path.write_bytes(data) |
| 246 | |
| 247 | |
| 248 | def ocr_page(page, dpi: int) -> str: |
no outgoing calls
no test coverage detected