2010-07-31 06:52:47 +04:00
|
|
|
#
|
|
|
|
# The Python Imaging Library.
|
|
|
|
# $Id$
|
|
|
|
#
|
|
|
|
# standard mode descriptors
|
|
|
|
#
|
|
|
|
# History:
|
|
|
|
# 2006-03-20 fl Added
|
|
|
|
#
|
|
|
|
# Copyright (c) 2006 by Secret Labs AB.
|
|
|
|
# Copyright (c) 2006 by Fredrik Lundh.
|
|
|
|
#
|
|
|
|
# See the README file for information on usage and redistribution.
|
|
|
|
#
|
|
|
|
|
|
|
|
# mode descriptor cache
|
2017-01-11 00:20:05 +03:00
|
|
|
_modes = None
|
2010-07-31 06:52:47 +04:00
|
|
|
|
2014-08-26 17:47:10 +04:00
|
|
|
|
2019-09-30 17:56:31 +03:00
|
|
|
class ModeDescriptor:
|
2016-05-24 10:36:14 +03:00
|
|
|
"""Wrapper for mode strings."""
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
def __init__(self, mode, bands, basemode, basetype):
|
|
|
|
self.mode = mode
|
|
|
|
self.bands = bands
|
|
|
|
self.basemode = basemode
|
|
|
|
self.basetype = basetype
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.mode
|
|
|
|
|
2014-08-26 17:47:10 +04:00
|
|
|
|
2010-07-31 06:52:47 +04:00
|
|
|
def getmode(mode):
|
2016-05-24 10:36:14 +03:00
|
|
|
"""Gets a mode descriptor for the given mode."""
|
2017-01-11 00:20:05 +03:00
|
|
|
global _modes
|
2010-07-31 06:52:47 +04:00
|
|
|
if not _modes:
|
|
|
|
# initialize mode cache
|
2017-01-11 00:20:05 +03:00
|
|
|
modes = {}
|
2021-03-07 06:21:27 +03:00
|
|
|
for m, (basemode, basetype, bands) in {
|
|
|
|
# core modes
|
|
|
|
"1": ("L", "L", ("1",)),
|
|
|
|
"L": ("L", "L", ("L",)),
|
|
|
|
"I": ("L", "I", ("I",)),
|
|
|
|
"F": ("L", "F", ("F",)),
|
|
|
|
"P": ("P", "L", ("P",)),
|
|
|
|
"RGB": ("RGB", "L", ("R", "G", "B")),
|
|
|
|
"RGBX": ("RGB", "L", ("R", "G", "B", "X")),
|
|
|
|
"RGBA": ("RGB", "L", ("R", "G", "B", "A")),
|
|
|
|
"CMYK": ("RGB", "L", ("C", "M", "Y", "K")),
|
|
|
|
"YCbCr": ("RGB", "L", ("Y", "Cb", "Cr")),
|
|
|
|
"LAB": ("RGB", "L", ("L", "A", "B")),
|
|
|
|
"HSV": ("RGB", "L", ("H", "S", "V")),
|
|
|
|
# extra experimental modes
|
|
|
|
"RGBa": ("RGB", "L", ("R", "G", "B", "a")),
|
|
|
|
"LA": ("L", "L", ("L", "A")),
|
|
|
|
"La": ("L", "L", ("L", "a")),
|
|
|
|
"PA": ("RGB", "L", ("P", "A")),
|
|
|
|
}.items():
|
2017-01-11 00:20:05 +03:00
|
|
|
modes[m] = ModeDescriptor(m, bands, basemode, basetype)
|
2010-07-31 06:52:47 +04:00
|
|
|
# mapping modes
|
2019-06-12 13:33:00 +03:00
|
|
|
for i16mode in (
|
|
|
|
"I;16",
|
|
|
|
"I;16S",
|
|
|
|
"I;16L",
|
|
|
|
"I;16LS",
|
|
|
|
"I;16B",
|
|
|
|
"I;16BS",
|
|
|
|
"I;16N",
|
|
|
|
"I;16NS",
|
|
|
|
):
|
|
|
|
modes[i16mode] = ModeDescriptor(i16mode, ("I",), "L", "L")
|
2017-01-11 00:20:05 +03:00
|
|
|
# set global mode cache atomically
|
|
|
|
_modes = modes
|
2010-07-31 06:52:47 +04:00
|
|
|
return _modes[mode]
|