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
Sometimes I get the following error message when batch compressing jpg files:
thread 'main' panicked at 'assertion failed: picture.uv_stride as u32 == width / 2', ~/.cargo/registry/src/github.com-1ecc6299db9ec823/imager-0.3.2/src/data.rs:276:9
The text was updated successfully, but these errors were encountered:
what about the image file?
Sorry, something went wrong.
image.jpg.zip
Seems to be a resolution issue. When the resolution is dividable by 2 it works. So maybe round::floor(width / 2) might help here?
round::floor(width / 2)
No branches or pull requests
Sometimes I get the following error message when batch compressing jpg files:
The text was updated successfully, but these errors were encountered: