Skip to content

Commit

Permalink
Merge pull request #6642 from JayWiz/1-support-for-16-bit-integer-tiffs
Browse files Browse the repository at this point in the history
Added support for opening WhiteIsZero 16 bit integer TIFF images
  • Loading branch information
radarhere committed Oct 10, 2022
2 parents 9956253 + 49aca04 commit 2942868
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/PIL/TiffImagePlugin.py
Expand Up @@ -173,6 +173,7 @@
(II, 1, (1,), 2, (8,), ()): ("L", "L;R"),
(MM, 1, (1,), 2, (8,), ()): ("L", "L;R"),
(II, 1, (1,), 1, (12,), ()): ("I;16", "I;12"),
(II, 0, (1,), 1, (16,), ()): ("I;16", "I;16"),
(II, 1, (1,), 1, (16,), ()): ("I;16", "I;16"),
(MM, 1, (1,), 1, (16,), ()): ("I;16B", "I;16B"),
(II, 1, (1,), 2, (16,), ()): ("I;16", "I;16R"),
Expand Down

0 comments on commit 2942868

Please sign in to comment.