CmykColorHelper.ToCmykIcc

ToCmykIcc(Color[], Stream, Stream)

The conversion from ARGB colors to CMYK colors using Icc conversion with custom profiles.

public static int[] ToCmykIcc(Color[] pixels, Stream rgbIccStream, Stream cmykIccStream)
ParameterTypeDescription
pixelsColor[]The ARGB colors.
rgbIccStreamStreamThe stream containing RGB Icc profile.
cmykIccStreamStreamThe stream containing CMYK Icc profile.

Return Value

The CMYK colors presented as 32-bit integer values.

See Also


ToCmykIcc(Color[])

The conversion from ARGB colors to CMYK colors using Icc conversion with default profiles.

public static int[] ToCmykIcc(Color[] pixels)
ParameterTypeDescription
pixelsColor[]The ARGB colors.

Return Value

The CMYK colors presented as 32-bit integer values.

See Also


ToCmykIcc(Color)

The conversion from ARGB color to CMYK color using Icc conversion with default profiles.

public static int ToCmykIcc(Color pixel)
ParameterTypeDescription
pixelColorThe ARGB color.

Return Value

The CMYK color presented as a 32-bit integer value.

See Also


ToCmykIcc(Color, Stream, Stream)

The conversion from ARGB color to CMYK color using Icc conversion with custom profiles.

public static int ToCmykIcc(Color pixel, Stream rgbIccStream, Stream cmykIccStream)
ParameterTypeDescription
pixelColorThe ARGB color.
rgbIccStreamStreamThe stream containing RGB Icc profile.
cmykIccStreamStreamThe stream containing CMYK Icc profile.

Return Value

The CMYK color presented as a 32-bit integer value.

See Also