Output of resize/compress operations.
| 68 | |
| 69 | @dataclass(frozen=True) |
| 70 | class ResizeResult: |
| 71 | """Output of resize/compress operations.""" |
| 72 | data: bytes |
| 73 | media_type: str # e.g. "image/png" |
| 74 | dimensions: ImageDimensions | None |
| 75 | |
| 76 | |
| 77 | class ImageProcessingError(Exception): |
no outgoing calls
no test coverage detected