ImageAttributes.ClearOutputChannelColorProfile Method

Definition

Clears the output channel color profile setting.

Overloads

ClearOutputChannelColorProfile(ColorAdjustType)

Clears the output channel color profile setting for a specified category.

ClearOutputChannelColorProfile()

Clears the output channel color profile setting for the default category.

ClearOutputChannelColorProfile(ColorAdjustType)

Clears the output channel color profile setting for a specified category.

public:
 void ClearOutputChannelColorProfile(System::Drawing::Imaging::ColorAdjustType type);
public void ClearOutputChannelColorProfile (System.Drawing.Imaging.ColorAdjustType type);
member this.ClearOutputChannelColorProfile : System.Drawing.Imaging.ColorAdjustType -> unit
Public Sub ClearOutputChannelColorProfile (type As ColorAdjustType)

Parameters

type
ColorAdjustType

An element of ColorAdjustType that specifies the category for which the output channel profile setting is cleared.

Remarks

An ImageAttributes object maintains color and grayscale settings for five adjustment categories: default, bitmap, brush, pen, and text. For example, you can specify an output channel profile for the default category and a different output channel profile for the bitmap 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 bitmap category, the default settings apply to the bitmap 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 an output channel profile and an adjustment matrix for the default category. If you set the output channel profile for the bitmap category by calling the SetOutputChannelColorProfile method, the default output channel profile will not apply to bitmaps. If you later clear the bitmap output channel profile by calling the ClearOutputChannelColorProfile method, the bitmap category will not revert to the default output channel profile; rather, the bitmap category will have no output channel profile setting. Similarly, the bitmap category will not revert to the default color-adjustment matrix; rather, the bitmap category will have no color-adjustment matrix.

Applies to

ClearOutputChannelColorProfile()

Clears the output channel color profile setting for the default category.

public:
 void ClearOutputChannelColorProfile();
public void ClearOutputChannelColorProfile ();
member this.ClearOutputChannelColorProfile : unit -> unit
Public Sub ClearOutputChannelColorProfile ()

Remarks

An ImageAttributes object maintains color and grayscale settings for five adjustment categories: default, bitmap, brush, pen, and text. For example, you can specify an output channel profile for the default category and a different output channel profile for the bitmap 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 bitmap category, the default settings apply to the bitmap category.

Applies to