We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Trying to save an empty PNG (with dimensions 0x0) causes a panic:
thread 'main' panicked at 'assertion failed: size != 0', ../src/libcore/slice.rs:256
Saving an empty jpg does not result in any panic. An empty .jpg is saved with no problems.
This should probably be a Result::Err() instead since save() returns a Result anyway.
Result::Err()
save()
Result
The text was updated successfully, but these errors were encountered:
Indeed, thank you. Tracking as image-rs/image-png#43.
Sorry, something went wrong.
No branches or pull requests
Trying to save an empty PNG (with dimensions 0x0) causes a panic:
Saving an empty jpg does not result in any panic. An empty .jpg is saved with no problems.
This should probably be a
Result::Err()
instead sincesave()
returns aResult
anyway.The text was updated successfully, but these errors were encountered: