Raised when PyMuPDF refuses to open the byte stream.
| 15 | """Raised when a PDF cannot be parsed into a complete page sequence.""" |
| 16 | |
| 17 | |
| 18 | @dataclass(frozen=True) |
| 19 | class BoundingBox: |
| 20 | """A rectangle in top-left-origin PDF page coordinates.""" |
| 21 |
no outgoing calls
no test coverage detected