Enum IGDIPlus.TGPColorMatrixFlags
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Package: SignalLabBasicPkg
Unit: IGDIPlus
Contents |
Syntax
Delphi:
type TGPColorMatrixFlags = (ColorMatrixFlagsDefault, ColorMatrixFlagsSkipGrays, ColorMatrixFlagsAltGray);
C++ Builder:
enum TGPColorMatrixFlags {ColorMatrixFlagsDefault, ColorMatrixFlagsSkipGrays, ColorMatrixFlagsAltGray};
Visual C++ (MFC):
enum CTGPColorMatrixFlags {ColorMatrixFlagsDefault, ColorMatrixFlagsSkipGrays, ColorMatrixFlagsAltGray};
Summary
Specifies the types of images and colors that will be affected by the color and grayscale adjustment settings of an TGPImageAttributes object.
Description
Defines enumeration that specifies the types of images and colors that will be affected by the color and grayscale adjustment settings of an TGPImageAttributes object.
Values
ColorMatrixFlagsDefault | Specifies that all color values (including grays) are adjusted by the same color-adjustment matrix. |
ColorMatrixFlagsSkipGrays | Specifies that colors are adjusted but gray shades are not adjusted. A gray shade is any color that has the same value for its red, green, and blue components. |
ColorMatrixFlagsAltGray | Specifies that colors are adjusted by one matrix and gray shades are adjusted by another matrix. |