Icon TColorSpace

Unit: WebSrvr

TColorSpace = (csUnknown,csRGB,csCMYK,csGRAY,csYCBCR,csYCCK)

Available In: Client and Server Applications

The TColorSpace enumerated type is used to identity the type of color space used by the image contained within a TRasterImage instance.

ElementDescription
csCMYKThe image uses the CMYK (Cyan-Magenta-Yellow-Black) color space.
csGRAYThe image uses the grayscale color space.
csRGBThe image uses the RGB (Red-Green-Blue) color space.
csUnknownThe image uses an unknown type of color space.
csYCBCRThe image uses the YCbCr (Y-Luma, Cb-Blue difference chroma, Cr-Red difference chroma) color space.
csYCCKThe image uses the YCCK (same as YCBCR with an extra Black channel) color space.
Image