HEX
Server: Apache
System: Linux vps-cdc32557.vps.ovh.ca 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
User: hanode (1017)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //usr/lib/python3/dist-packages/PIL/ImageMode.py
#
# 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
_modes = None


class ModeDescriptor:
    """Wrapper for mode strings."""

    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


def getmode(mode):
    """Gets a mode descriptor for the given mode."""
    global _modes
    if not _modes:
        # initialize mode cache
        modes = {}
        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():
            modes[m] = ModeDescriptor(m, bands, basemode, basetype)
        # mapping modes
        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")
        # set global mode cache atomically
        _modes = modes
    return _modes[mode]