image-rs / jpeg-decoder

JPEG decoder written in Rust
Apache License 2.0
147 stars 88 forks source link

Propagate "invalid dimensions" error #163

Closed hanmertens closed 4 years ago

hanmertens commented 4 years ago

Avoid panicking when decoding an image with invalid dimensions but propagate the error instead. This required changing some function signatures, but none of these functions are part of the public API. I kept the error message the same, let me know if it should be changed to something more descriptive.

Fixes #161

HeroicKatora commented 4 years ago

Looks good :+1:

HeroicKatora commented 4 years ago

Thank you!