ImageAttributes.GetAdjustedPalette(ColorPalette, ColorAdjustType) 方法

定义

根据指定类别的调整设置,调整调色板中的颜色。

public:
 void GetAdjustedPalette(System::Drawing::Imaging::ColorPalette ^ palette, System::Drawing::Imaging::ColorAdjustType type);
public void GetAdjustedPalette (System.Drawing.Imaging.ColorPalette palette, System.Drawing.Imaging.ColorAdjustType type);
member this.GetAdjustedPalette : System.Drawing.Imaging.ColorPalette * System.Drawing.Imaging.ColorAdjustType -> unit
Public Sub GetAdjustedPalette (palette As ColorPalette, type As ColorAdjustType)

参数

palette
ColorPalette

ColorPalette,在输入时包含要调整的调色板,在输出时包含已调整的调色板。

type
ColorAdjustType

ColorAdjustType 的一个元素,指定其调整设置将应用于调色板的类别。

注解

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

调用 GetAdjustedPalette 方法时,可以指定用于调整调色板颜色的调整类别。 例如,如果传递给 BitmapGetAdjustedPalette 方法,则位图类别的调整设置用于调整调色板颜色。

适用于