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
TiffImagePlugin.py, line 1010: atts = dict([(k,v) for (k,(v,)) in ifd.items() if k not in blocklist])
atts = dict([(k,v) for (k,(v,)) in ifd.items() if k not in blocklist])
fails on BytesPerSample = (8,8,8), since there are too many bytes to unpack.
This wasn't a problem with bilevel g3/4, but is for deflate.
The text was updated successfully, but these errors were encountered:
Also, test what G4 does with color data. And possibly prevent that compression on anything but a mode 1 image.
Sorry, something went wrong.
Merge pull request python-pillow#387 from radarhere/libpng
6f8bdd6
Updated libpng to 1.6.40
Successfully merging a pull request may close this issue.
TiffImagePlugin.py, line 1010:
atts = dict([(k,v) for (k,(v,)) in ifd.items() if k not in blocklist])
fails on BytesPerSample = (8,8,8), since there are too many bytes to unpack.
This wasn't a problem with bilevel g3/4, but is for deflate.
The text was updated successfully, but these errors were encountered: