mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-06-11 08:33:13 +03:00
Merge pull request #5935 from FirefoxMetzger/add-missing-ImageModes
Add missing ImageModes
This commit is contained in:
commit
9a9afd36b4
|
@ -52,6 +52,10 @@ def getmode(mode):
|
||||||
"HSV": ("RGB", "L", ("H", "S", "V")),
|
"HSV": ("RGB", "L", ("H", "S", "V")),
|
||||||
# extra experimental modes
|
# extra experimental modes
|
||||||
"RGBa": ("RGB", "L", ("R", "G", "B", "a")),
|
"RGBa": ("RGB", "L", ("R", "G", "B", "a")),
|
||||||
|
"BGR;15": ("RGB", "L", ("B", "G", "R")),
|
||||||
|
"BGR;16": ("RGB", "L", ("B", "G", "R")),
|
||||||
|
"BGR;24": ("RGB", "L", ("B", "G", "R")),
|
||||||
|
"BGR;32": ("RGB", "L", ("B", "G", "R")),
|
||||||
"LA": ("L", "L", ("L", "A")),
|
"LA": ("L", "L", ("L", "A")),
|
||||||
"La": ("L", "L", ("L", "a")),
|
"La": ("L", "L", ("L", "a")),
|
||||||
"PA": ("RGB", "L", ("P", "A")),
|
"PA": ("RGB", "L", ("P", "A")),
|
||||||
|
|
Loading…
Reference in New Issue
Block a user