Added a psd mode (mode 4, 16 bits).

This commit is contained in:
tdesvenain 2012-07-29 16:02:26 +02:00
parent 4ebe7fc459
commit bc9455d059
2 changed files with 10 additions and 3 deletions

View File

@ -28,6 +28,7 @@ MODES = {
(2, 8): ("P", 1),
(3, 8): ("RGB", 3),
(4, 8): ("CMYK", 4),
(4, 16): ("CMYK", 4),
(7, 8): ("L", 1), # FIXME: multilayer
(8, 8): ("L", 1), # duotone
(9, 8): ("LAB", 3)

View File

@ -5,9 +5,15 @@ Changelog
1.7.8 (Unreleased)
------------------
- Fix opening psd files with RGBA layers when A mode is not of type 65535 but 3.
Fixes issue https://github.com/python-imaging/Pillow/issues/3
[thomasdesvenain]
- Manage more psd files:
- Added a psd mode (mode 4, 16 bits).
[thomasdesvenain]
- Fix opening psd files with RGBA layers when A mode is not of type 65535 but 3.
Fixes issue https://github.com/python-imaging/Pillow/issues/3
[thomasdesvenain]
1.7.7 (2012-04-04)
------------------