| Server IP : 35.80.110.71 / Your IP : 216.73.216.221 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-21-44 6.17.0-1019-aws #19~24.04.1-Ubuntu SMP Tue Jun 23 18:53:06 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/lib/python3/dist-packages/PIL-stubs/ |
Upload File : |
import sys
from _typeshed import Incomplete, Unused
from enum import IntEnum
from .Image import ImagePointHandler
DESCRIPTION: str
VERSION: str
core: Incomplete
class Intent(IntEnum):
PERCEPTUAL: int
RELATIVE_COLORIMETRIC: int
SATURATION: int
ABSOLUTE_COLORIMETRIC: int
class Direction(IntEnum):
INPUT: int
OUTPUT: int
PROOF: int
FLAGS: Incomplete
class ImageCmsProfile:
def __init__(self, profile) -> None: ...
def tobytes(self): ...
class ImageCmsTransform(ImagePointHandler):
transform: Incomplete
input_mode: Incomplete
output_mode: Incomplete
output_profile: Incomplete
def __init__(
self,
input,
output,
input_mode,
output_mode,
intent=...,
proof: Incomplete | None = None,
proof_intent=...,
flags: int = 0,
) -> None: ...
def point(self, im): ...
def apply(self, im, imOut: Incomplete | None = None): ...
def apply_in_place(self, im): ...
if sys.platform == "win32":
def get_display_profile(handle: Incomplete | None = None) -> ImageCmsProfile | None: ...
else:
def get_display_profile(handle: Unused = None) -> None: ...
class PyCMSError(Exception): ...
def profileToProfile(
im,
inputProfile,
outputProfile,
renderingIntent=...,
outputMode: Incomplete | None = None,
inPlace: bool = False,
flags: int = 0,
): ...
def getOpenProfile(profileFilename): ...
def buildTransform(inputProfile, outputProfile, inMode, outMode, renderingIntent=..., flags: int = 0): ...
def buildProofTransform(
inputProfile, outputProfile, proofProfile, inMode, outMode, renderingIntent=..., proofRenderingIntent=..., flags=16384
): ...
buildTransformFromOpenProfiles = buildTransform
buildProofTransformFromOpenProfiles = buildProofTransform
def applyTransform(im, transform, inPlace: bool = False): ...
def createProfile(colorSpace, colorTemp: int = -1): ...
def getProfileName(profile): ...
def getProfileInfo(profile): ...
def getProfileCopyright(profile): ...
def getProfileManufacturer(profile): ...
def getProfileModel(profile): ...
def getProfileDescription(profile): ...
def getDefaultIntent(profile): ...
def isIntentSupported(profile, intent, direction): ...
def versions(): ...