CmykColorHelper.ToArgbIcc

ToArgbIcc(int[])

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

public static Color[] ToArgbIcc(int[] cmykPixels)
ParameterTypeDescription
cmykPixelsInt32[]The CMYK pixels presented as 32-bit integer values.

Return Value

The ARGB colors.

See Also


ToArgbIcc(int[], Stream, Stream)

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

public static Color[] ToArgbIcc(int[] cmykPixels, Stream cmykIccStream, Stream rgbIccStream)
ParameterTypeDescription
cmykPixelsInt32[]The CMYK colors presented as 32-bit integer values.
cmykIccStreamStreamThe stream containing CMYK Icc profile.
rgbIccStreamStreamThe stream containing RGB Icc profile.

Return Value

The ARGB colors.

See Also


ToArgbIcc(int)

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

public static Color ToArgbIcc(int cmykPixel)
ParameterTypeDescription
cmykPixelInt32The CMYK color presented as a 32-bit integer value.

Return Value

The ARGB color.

See Also


ToArgbIcc(int, Stream, Stream)

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

public static Color ToArgbIcc(int cmykPixel, Stream cmykIccStream, Stream rgbIccStream)
ParameterTypeDescription
cmykPixelInt32The CMYK color presented as a 32-bit integer value.
cmykIccStreamStreamThe stream containing CMYK Icc profile.
rgbIccStreamStreamThe stream containing RGB Icc profile.

Return Value

The ARGB color.

See Also