mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-04-21 17:52:00 +03:00
Add open() support for 2-5 band uint16 TIFFs.
This only gets us to opening the first band, it doesn't actually allow the other bands to be retrieved.
This commit is contained in:
parent
1c2d465589
commit
e0bb623438
|
@ -176,6 +176,10 @@ OPEN_INFO = {
|
|||
(II, 1, (1,), 1, (12,), ()): ("I;16", "I;12"),
|
||||
|
||||
(II, 1, (1,), 1, (16,), ()): ("I;16", "I;16"),
|
||||
(II, 1, (1,), 1, (16,16), (0,)): ("I;16", "I;16"),
|
||||
(II, 1, (1,), 1, (16,16,16), (0,0,)): ("I;16", "I;16"),
|
||||
(II, 1, (1,), 1, (16,16,16,16), (0,0,0,)): ("I;16", "I;16"),
|
||||
(II, 1, (1,), 1, (16,16,16,16,16), (0,0,0,0,)): ("I;16", "I;16"),
|
||||
(MM, 1, (1,), 1, (16,), ()): ("I;16B", "I;16B"),
|
||||
(II, 1, (2,), 1, (16,), ()): ("I;16S", "I;16S"),
|
||||
(MM, 1, (2,), 1, (16,), ()): ("I;16BS", "I;16BS"),
|
||||
|
|
Loading…
Reference in New Issue
Block a user