ImageAttributes.ClearNoOp 方法

定义

清除 NoOp 设置。

重载

ClearNoOp()

清除默认类别的 NoOp 设置。

ClearNoOp(ColorAdjustType)

清除指定类别的 NoOp 设置。

ClearNoOp()

Source:
ImageAttributes.cs
Source:
ImageAttributes.cs
Source:
ImageAttributes.cs

清除默认类别的 NoOp 设置。

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

注解

对象维护五个 ImageAttributes 调整类别的颜色和灰度设置:默认、位图、画笔、笔和文本。 例如,可以为默认类别指定一个伽玛值,为位图类别指定不同的伽玛值,为笔类别指定不同的伽玛值。

可以通过调用 SetNoOp 方法禁用默认类别的颜色调整。 稍后,可以通过调用 ClearNoOp 方法恢复默认类别的颜色调整。 然后,颜色调整将返回到调用 SetNoOp之前已到位的内容。

适用于

ClearNoOp(ColorAdjustType)

Source:
ImageAttributes.cs
Source:
ImageAttributes.cs
Source:
ImageAttributes.cs

清除指定类别的 NoOp 设置。

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

参数

type
ColorAdjustType

ColorAdjustType 的一个元素,指定将清除 NoOp 设置的类别。

注解

对象维护五个 ImageAttributes 调整类别的颜色和灰度设置:默认、位图、画笔、笔和文本。 例如,可以为默认类别指定一个伽玛值,为位图类别指定不同的伽玛值,为笔类别指定不同的伽玛值。

可以通过调用 SetNoOp 方法禁用特定类别的颜色调整。 稍后,可以通过调用 ClearNoOp 方法恢复该类别的颜色调整。 然后,颜色调整将返回到调用 SetNoOp之前已到位的内容。

适用于