CmykColorHelper.ToCmyk

ToCmyk(int[])

The conversion from ARGB colors to CMYK colors.

public static int[] ToCmyk(int[] argbPixels)
ParameterTypeDescription
argbPixelsInt32[]The ARGB colors presented as 32-bit integer values.

Return Value

The CMYK colors presented as 32-bit integer values.

See Also


ToCmyk(int)

The conversion from ARGB color to CMYK color.

public static int ToCmyk(int argbPixel)
ParameterTypeDescription
argbPixelInt32The ARGB color presented as a 32-bit integer value.

Return Value

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

See Also


ToCmyk(Color)

The conversion from ARGB color to CMYK color.

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

Return Value

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

See Also


ToCmyk(Color[])

The conversion from ARGB colors to CMYK colors.

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

Return Value

The CMYK colors presented as 32-bit integer values.

See Also