TColor24Rec Record
ImagingTypes

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

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

ImagingTypes (at line 253)

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