ImageAttributes.ClearColorKey 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
清除颜色键(透明范围)。
重载
ClearColorKey() |
为默认类别清除颜色键(透明范围)。 |
ClearColorKey(ColorAdjustType) |
为指定类别清除颜色键(透明范围)。 |
ClearColorKey()
- Source:
- ImageAttributes.cs
- Source:
- ImageAttributes.cs
- Source:
- ImageAttributes.cs
为默认类别清除颜色键(透明范围)。
public:
void ClearColorKey();
public void ClearColorKey ();
member this.ClearColorKey : unit -> unit
Public Sub ClearColorKey ()
注解
对象维护五个 ImageAttributes 调整类别的颜色和灰度设置:默认值、位图、画笔、笔和文本。 例如,可以为默认类别指定一个颜色键,为位图类别指定不同的颜色键,并为笔类别指定不同的颜色键。
默认颜色调整和灰度调整设置适用于没有自己调整设置的所有类别。 例如,如果从未为笔类别指定任何调整设置,默认设置将应用于笔类别。
适用于
ClearColorKey(ColorAdjustType)
- Source:
- ImageAttributes.cs
- Source:
- ImageAttributes.cs
- Source:
- ImageAttributes.cs
为指定类别清除颜色键(透明范围)。
public:
void ClearColorKey(System::Drawing::Imaging::ColorAdjustType type);
public void ClearColorKey (System.Drawing.Imaging.ColorAdjustType type);
member this.ClearColorKey : System.Drawing.Imaging.ColorAdjustType -> unit
Public Sub ClearColorKey (type As ColorAdjustType)
参数
- type
- ColorAdjustType
ColorAdjustType 的一个元素,指定将清除颜色键的类别。
注解
对象维护五个 ImageAttributes 调整类别的颜色和灰度设置:默认值、位图、画笔、笔和文本。 例如,可以为默认类别指定一个颜色键,为位图类别指定不同的颜色键,并为笔类别指定不同的颜色键。
默认颜色调整和灰度调整设置适用于没有自己调整设置的所有类别。 例如,如果从未为笔类别指定任何调整设置,默认设置将应用于笔类别。
为特定类别指定颜色调整或灰度调整设置后,默认调整设置将不再应用于该类别。 例如,假设指定一个默认颜色键,该键使红色分量为 200 到 255 的任何颜色透明,并指定默认伽玛值 1.8。 如果通过调用 SetColorKey 方法设置笔类别的颜色键,则默认颜色键和默认伽玛值将不适用于笔。 如果稍后通过调用 ClearColorKey 方法清除笔颜色键,笔类别不会还原默认颜色键;而笔类别将没有颜色键。 同样,笔类别不会还原默认伽玛值;相反,笔类别将没有伽玛值。