to_color_icc method

to_color_icc

The conversion from CMYKColor to Color using icc conversion with default profiles. This method is deprecated. Please use more effective Aspose.Imaging.CmykColorHelper.ToArgbIcc.

Returns

The Color[].

def to_color_icc(self, cmyk_pixels):
    ...
ParameterTypeDescription
cmyk_pixelslistThe pixels of CMYKColor type in CMYK format.

to_color_icc

The conversion from CMYKColor to Color using icc conversion with default profiles. This method is deprecated. Please use more effective Aspose.Imaging.CmykColorHelper.ToArgbIcc.

Returns

The Color.

def to_color_icc(self, cmyk_pixel):
    ...
ParameterTypeDescription
cmyk_pixelCmykColorThe pixel of CMYKColor type in CMYK format.

to_color_icc

The conversion from CMYKColor to Color using icc conversion. This method is deprecated. Please use more effective Aspose.Imaging.CmykColorHelper.ToArgbIcc.

Returns

The Color[].

def to_color_icc(self, cmyk_pixels, cmyk_icc_stream, rgb_icc_stream):
    ...
ParameterTypeDescription
cmyk_pixelslistThe pixels of CMYKColor type in CMYK format.
cmyk_icc_streamio.RawIOBaseThe stream containing icc cmyk profile.
rgb_icc_streamio.RawIOBaseThe stream containing icc rgb profile.

to_color_icc

The conversion from CMYKColor to Color using icc conversion. This method is deprecated. Please use more effective Aspose.Imaging.CmykColorHelper.ToArgbIcc.

Returns

The Color.

def to_color_icc(self, cmyk_pixel, cmyk_icc_stream, rgb_icc_stream):
    ...
ParameterTypeDescription
cmyk_pixelCmykColorThe pixel of CMYKColor type in CMYK format.
cmyk_icc_streamio.RawIOBaseThe stream containing icc cmyk profile.
rgb_icc_streamio.RawIOBaseThe stream containing icc rgb profile.

See Also