Vcl.Imaging.GIFImg.TGIFColor

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TGIFColor = record

C++

struct DECLSPEC_DRECORD TGIFColor
{
public:
    System::Byte Red;
    System::Byte Green;
    System::Byte Blue;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
Vcl.Imaging.GIFImg.pas
Vcl.Imaging.GIFImg.hpp
Vcl.Imaging.GIFImg Vcl.Imaging.GIFImg

Description

A variable of type TGIFColor contains the representation of a color in RGB color model.

A variable of type TGIFColor contains the representation of a color in RGB color model.

A color in the RGB color model is described by indicating how much of the Red, Green, and Blue colors is included.

The following table lists the fields contained in a variable of type TGIFColor.


Field Meaning

Red

The intensity of Red.

Green

The intensity of Green.

Blue

The intensity of Blue.



See Also