ImageAttributes.SetOutputChannelColorProfile 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
设置输出通道颜色配置文件。
重载
SetOutputChannelColorProfile(String, ColorAdjustType) |
为指定类别设置输出通道颜色配置文件。 |
SetOutputChannelColorProfile(String) |
为默认类别设置输出通道颜色配置文件。 |
SetOutputChannelColorProfile(String, ColorAdjustType)
- Source:
- ImageAttributes.cs
- Source:
- ImageAttributes.cs
- Source:
- ImageAttributes.cs
为指定类别设置输出通道颜色配置文件。
public:
void SetOutputChannelColorProfile(System::String ^ colorProfileFilename, System::Drawing::Imaging::ColorAdjustType type);
public void SetOutputChannelColorProfile (string colorProfileFilename, System.Drawing.Imaging.ColorAdjustType type);
member this.SetOutputChannelColorProfile : string * System.Drawing.Imaging.ColorAdjustType -> unit
Public Sub SetOutputChannelColorProfile (colorProfileFilename As String, type As ColorAdjustType)
参数
- colorProfileFilename
- String
颜色配置文件的路径名。 如果颜色配置文件位于 %SystemRoot%\System32\Spool\Drivers\Color 目录中,则该参数可以是该文件的文件名。 否则,该参数必须是完全限定的路径名。
- type
- ColorAdjustType
ColorAdjustType 的一个元素,指定将设置输出通道颜色配置文件的类别。
注解
可以使用 SetOutputChannel 和 SetOutputChannelColorProfile 方法将图像转换为 CMYK (青色-洋红色-黄色-黑色) 颜色空间,并检查其中一个 CMYK 颜色通道的强度。 例如,假设你编写的代码执行以下步骤:
Create 。Image
创建一个 ImageAttributes 对象。
SetOutputChannel传递给 ColorChannelC 对象的 方法ImageAttributes。
将颜色配置文件的路径名称传递给 SetOutputChannelColorProfile 对象的 方法 ImageAttributes 。
将 和 ImageAttributes 对象的路径Image传递给 DrawImage 方法。
GDI+ 将使用颜色配置文件来计算图像中每个像素的青色分量,呈现的图像中的每个像素都是灰色阴影,指示其青色通道的强度。
对象维护五个 ImageAttributes 调整类别的颜色和灰度设置:默认值、位图、画笔、笔和文本。 例如,可以为默认类别指定输出通道颜色配置文件,为位图类别指定其他输出通道颜色配置文件。
默认颜色调整和灰度调整设置适用于没有自己调整设置的所有类别。 例如,如果从未为位图类别指定任何调整设置,则默认设置将应用于位图类别。
为特定类别指定颜色调整或灰度调整设置后,默认调整设置将不再应用于该类别。 例如,假设为默认类别指定调整设置的集合。 如果通过将 传递给 BitmapSetOutputChannelColorProfile 方法来设置位图类别的输出通道颜色配置文件,则默认调整设置都不会应用于位图。
适用于
SetOutputChannelColorProfile(String)
- Source:
- ImageAttributes.cs
- Source:
- ImageAttributes.cs
- Source:
- ImageAttributes.cs
为默认类别设置输出通道颜色配置文件。
public:
void SetOutputChannelColorProfile(System::String ^ colorProfileFilename);
public void SetOutputChannelColorProfile (string colorProfileFilename);
member this.SetOutputChannelColorProfile : string -> unit
Public Sub SetOutputChannelColorProfile (colorProfileFilename As String)
参数
- colorProfileFilename
- String
颜色配置文件的路径名。 如果颜色配置文件位于 %SystemRoot%\System32\Spool\Drivers\Color 目录中,则该参数可以是该文件的文件名。 否则,该参数必须是完全限定的路径名。
注解
可以使用 SetOutputChannel 和 SetOutputChannelColorProfile 方法将图像转换为 CMYK (青色-洋红色-黄色-黑色) 颜色空间,并检查其中一个 CMYK 颜色通道的强度。 例如,假设你编写的代码执行以下步骤:
Create 。Image
创建一个 ImageAttributes 对象。
SetOutputChannel传递给 ColorChannelC 对象的 方法ImageAttributes。
将颜色配置文件的路径名称传递给 SetOutputChannelColorProfile 对象的 方法 ImageAttributes 。
将 和 ImageAttributes 对象的路径Image传递给 DrawImage 方法。
GDI+ 将使用颜色配置文件来计算图像中每个像素的青色分量,呈现的图像中的每个像素都是灰色阴影,指示其青色通道的强度。
对象维护五个 ImageAttributes 调整类别的颜色和灰度设置:默认值、位图、画笔、笔和文本。 例如,可以为默认类别指定输出通道颜色配置文件,为位图类别指定其他输出通道颜色配置文件。
默认颜色调整和灰度调整设置适用于没有自己调整设置的所有类别。 例如,如果从未为位图类别指定任何调整设置,则默认设置将应用于位图类别。