Sets the color-adjustment matrix and the grayscale-adjustment matrix for a specified category.
Assembly: System.Drawing (in System.Drawing.dll)
Public Sub SetColorMatrices ( _ newColorMatrix As ColorMatrix, _ grayMatrix As ColorMatrix, _ mode As ColorMatrixFlag, _ type As ColorAdjustType _ )
public void SetColorMatrices( ColorMatrix newColorMatrix, ColorMatrix grayMatrix, ColorMatrixFlag mode, ColorAdjustType type )
public: void SetColorMatrices( ColorMatrix^ newColorMatrix, ColorMatrix^ grayMatrix, ColorMatrixFlag mode, ColorAdjustType type )
member SetColorMatrices : newColorMatrix:ColorMatrix * grayMatrix:ColorMatrix * mode:ColorMatrixFlag * type:ColorAdjustType -> unit
Parameters
- newColorMatrix
- Type: System.Drawing.Imaging.ColorMatrix
The color-adjustment matrix.
- grayMatrix
- Type: System.Drawing.Imaging.ColorMatrix
The grayscale-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 and grayscale-adjustment matrices.
- type
- Type: System.Drawing.Imaging.ColorAdjustType
An element of ColorAdjustType that specifies the category for which the color-adjustment and grayscale-adjustment matrices are set.
An ImageAttributes object maintains color and grayscale settings for five adjustment categories: default, bitmap, brush, pen, and text. For example, you can specify adjustment matrices for the default category, different adjustment matrices for the bitmap category, and still different adjustment matrices 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 and grayscale-adjustment matrices for the pen category by passing Pen to the SetColorMatrices method, none of the default adjustment settings will apply to pens.
.NET Framework
Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0.NET Framework Client Profile
Supported in: 4, 3.5 SP1Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.