TColor32Rec Record
ImagingTypes

Color record for 32 bit images, which allows access to individual color channels.

Pascal
public TColor32Rec = packed record
  case LongInt of
    0: (Color: TColor32;);
    1: (A: Byte;
        B: Byte;
        G: Byte;
        R: Byte;);
    2: (Channels: array[0..3] of Byte);
        Color24Rec: TColor24Rec;);
  end;
File

ImagingTypes (at line 264)

Related Information
You are here: Symbol Reference > Structs, Records, Enums > TColor32Rec Record