Icon TPixelFormat

Unit: WebSrvr

TPixelFormat = (pfUnknown,pf24BppRGB,pf32BppRGB,pf32BppARGB,
      pf32BppPARGB, pf48BppRGB,pf64BppARGB,pf64BppPARGB,pf32BppCMYK)

Available In: Client and Server Applications

The TPixelFormat enumerated type is used to identity the pixel format of the image in a TRasterImage instance.

ElementDescription
pf24BppRGBThe pixel format of the image is 24-bit RGB (Red, Green and Blue channels).
pf32BppARGBThe pixel format of the image is 32-bit ARGB (Alpha, Red, Green and Blue channels).
pf32BppCMYKThe pixel format of the image is 32-bit CMYK (Cyan, Magenta, Yellow and Black channels).
pf32BppPARGBThe pixel format of the image is 32-bit ARGB (Alpha, Red, Green and Blue channels where Red, Green, and Blue channels are premultiplied with Alpha channel).
pf32BppRGBThe pixel format of the image is 32-bit RGB (Red, Green and Blue channels, with an unused channel).
pf48BppRGBThe pixel format of the image is 48-bit RGB (Red, Green and Blue channels are 16-bit instead of 8-bit).
pf64BppARGBThe pixel format of the image is 64-bit RGB (Alpha, Red, Green and Blue channels are 16-bit instead of 8-bit).
pf64BppPARGBThe pixel format of the image is 64-bit RGB (Alpha, Red, Green and Blue channels are 16-bit instead of 8-bit and Red, Green, and Blue channels are premultiplied with Alpha channel).
pfUnknownThe pixel format is unknown.
Image