ImageAttributes::SetColorMatrix Method (ColorMatrix^, ColorMatrixFlag, ColorAdjustType)
Sets the color-adjustment matrix for a specified category.
Assembly: System.Drawing (in System.Drawing.dll)
public: void SetColorMatrix( ColorMatrix^ newColorMatrix, ColorMatrixFlag mode, ColorAdjustType type )
Parameters
- newColorMatrix
-
Type:
System.Drawing.Imaging::ColorMatrix^
The color-adjustment matrix.
- mode
-
Type:
System.Drawing.Imaging::ColorMatrixFlag
An element of ColorMatrixFlag that specifies the type of image and color that will be affected by the color-adjustment matrix.
- type
-
Type:
System.Drawing.Imaging::ColorAdjustType
An element of ColorAdjustType that specifies the category for which the color-adjustment matrix is set.
An ImageAttributes object maintains color and grayscale settings for five adjustment categories: default, bitmap, brush, pen, and text. For example, you can specify a color-adjustment matrix for the default category, a different color-adjustment matrix for the bitmap category, and still a different color-adjustment matrix for the pen category.
The default color-adjustment and grayscale-adjustment settings apply to all categories that do not have adjustment settings of their own. For example, if you never specify any adjustment settings for the pen category, the default settings apply to the pen category.
As soon as you specify a color-adjustment or grayscale-adjustment setting for a certain category, the default adjustment settings no longer apply to that category. For example, suppose you specify a collection of adjustment settings for the default category. If you set the color-adjustment matrix for the pen category by passing Pen to the SetColorMatrix method, none of the default adjustment settings will apply to pens.
The following code example demonstrates how to use the SetColorMatrix method. To run this example, paste the code into a Windows Form and call RotateColors from the form's Paint event-handling method, passing e as PaintEventArgs.
Available since 1.1