Enum IGDIPlus.TGPColorMatrixFlags
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
||
Line 25: | Line 25: | ||
== Summary == | == Summary == | ||
− | Specifies the types of images and colors that will be affected by the color and grayscale adjustment settings of an TGPImageAttributes object. | + | Specifies the types of images and colors that will be affected by the color and grayscale adjustment settings of an [[Class IGDIPlus.TGPImageAttributes|TGPImageAttributes]] object. |
== Description == | == Description == | ||
Defines enumeration that specifies the types of images and | Defines enumeration that specifies the types of images and | ||
colors that will be affected by the color and grayscale | colors that will be affected by the color and grayscale | ||
− | adjustment settings of an TGPImageAttributes object. | + | adjustment settings of an [[Class IGDIPlus.TGPImageAttributes|TGPImageAttributes]] object. |
== Values == | == Values == |
Revision as of 17:18, 18 October 2012
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. |