mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-08-03 12:00:10 +03:00
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
c3d9501838
|
@ -4,6 +4,9 @@ Changelog (Pillow)
|
|||
2.3.0 (2014-01-01)
|
||||
------------------
|
||||
|
||||
- Support RGBA TIFF with missing ExtraSamples tag
|
||||
[cgohlke]
|
||||
|
||||
- Lossless WEBP Support
|
||||
[wiredfool]
|
||||
|
||||
|
|
|
@ -154,6 +154,7 @@ OPEN_INFO = {
|
|||
(II, 1, 3, 1, (32,), ()): ("F", "F;32F"),
|
||||
(II, 2, 1, 1, (8,8,8), ()): ("RGB", "RGB"),
|
||||
(II, 2, 1, 2, (8,8,8), ()): ("RGB", "RGB;R"),
|
||||
(II, 2, 1, 1, (8,8,8,8), ()): ("RGBA", "RGBA"), # missing ExtraSamples
|
||||
(II, 2, 1, 1, (8,8,8,8), (0,)): ("RGBX", "RGBX"),
|
||||
(II, 2, 1, 1, (8,8,8,8), (1,)): ("RGBA", "RGBa"),
|
||||
(II, 2, 1, 1, (8,8,8,8), (2,)): ("RGBA", "RGBA"),
|
||||
|
|
Loading…
Reference in New Issue
Block a user