Table of Contents

Class ColorSpaceConverter

Namespace
SixLabors.ImageSharp.ColorSpaces.Conversion
Assembly
SixLabors.ImageSharp.dll

Provides methods to allow the conversion of color values between different color spaces.

public class ColorSpaceConverter
Inheritance
ColorSpaceConverter
Inherited Members

Constructors

ColorSpaceConverter()

Initializes a new instance of the ColorSpaceConverter class.

public ColorSpaceConverter()

ColorSpaceConverter(ColorSpaceConverterOptions)

Initializes a new instance of the ColorSpaceConverter class.

public ColorSpaceConverter(ColorSpaceConverterOptions options)

Parameters

options ColorSpaceConverterOptions

The configuration options.

Methods

Adapt(in CieLab)

Adapts CieLab color from the source white point to white point set in TargetLabWhitePoint.

public CieLab Adapt(in CieLab color)

Parameters

color CieLab

The color to adapt

Returns

CieLab

The adapted color

Adapt(in CieLch)

Adapts CieLch color from the source white point to white point set in TargetLabWhitePoint.

public CieLch Adapt(in CieLch color)

Parameters

color CieLch

The color to adapt

Returns

CieLch

The adapted color

Adapt(in CieLchuv)

Adapts CieLchuv color from the source white point to white point set in TargetLabWhitePoint.

public CieLchuv Adapt(in CieLchuv color)

Parameters

color CieLchuv

The color to adapt

Returns

CieLchuv

The adapted color

Adapt(in CieLuv)

Adapts CieLuv color from the source white point to white point set in TargetLuvWhitePoint.

public CieLuv Adapt(in CieLuv color)

Parameters

color CieLuv

The color to adapt

Returns

CieLuv

The adapted color

Adapt(in CieXyz, in CieXyz)

Performs chromatic adaptation of given CieXyz color. Target white point is WhitePoint.

public CieXyz Adapt(in CieXyz color, in CieXyz sourceWhitePoint)

Parameters

color CieXyz

The color to adapt

sourceWhitePoint CieXyz

The source white point.

Returns

CieXyz

The adapted color

Adapt(in CieXyz, in CieXyz, in CieXyz)

Performs chromatic adaptation of given CieXyz color. Target white point is WhitePoint.

public CieXyz Adapt(in CieXyz color, in CieXyz sourceWhitePoint, in CieXyz targetWhitePoint)

Parameters

color CieXyz

The color to adapt

sourceWhitePoint CieXyz

The source white point.

targetWhitePoint CieXyz

The target white point.

Returns

CieXyz

The adapted color

Adapt(in HunterLab)

Adapts HunterLab color from the source white point to white point set in TargetHunterLabWhitePoint.

public HunterLab Adapt(in HunterLab color)

Parameters

color HunterLab

The color to adapt

Returns

HunterLab

The adapted color

Adapt(in LinearRgb)

Adapts a LinearRgb color from the source working space to working space set in TargetRgbWorkingSpace.

public LinearRgb Adapt(in LinearRgb color)

Parameters

color LinearRgb

The color to adapt

Returns

LinearRgb

The adapted color

Adapt(in Rgb)

Adapts an Rgb color from the source working space to working space set in TargetRgbWorkingSpace.

public Rgb Adapt(in Rgb color)

Parameters

color Rgb

The color to adapt

Returns

Rgb

The adapted color

Convert(ReadOnlySpan<CieLab>, Span<CieLchuv>)

Performs the bulk conversion from CieLab into CieLchuv.

public void Convert(ReadOnlySpan<CieLab> source, Span<CieLchuv> destination)

Parameters

source ReadOnlySpan<CieLab>

The span to the source colors

destination Span<CieLchuv>

The span to the destination colors

Convert(ReadOnlySpan<CieLab>, Span<CieLch>)

Performs the bulk conversion from CieLab into CieLch.

public void Convert(ReadOnlySpan<CieLab> source, Span<CieLch> destination)

Parameters

source ReadOnlySpan<CieLab>

The span to the source colors

destination Span<CieLch>

The span to the destination colors

Convert(ReadOnlySpan<CieLab>, Span<CieLuv>)

Performs the bulk conversion from CieLab into CieLuv.

public void Convert(ReadOnlySpan<CieLab> source, Span<CieLuv> destination)

Parameters

source ReadOnlySpan<CieLab>

The span to the source colors

destination Span<CieLuv>

The span to the destination colors

Convert(ReadOnlySpan<CieLab>, Span<CieXyy>)

Performs the bulk conversion from CieLab into CieXyy

public void Convert(ReadOnlySpan<CieLab> source, Span<CieXyy> destination)

Parameters

source ReadOnlySpan<CieLab>

The span to the source colors

destination Span<CieXyy>

The span to the destination colors

Convert(ReadOnlySpan<CieLab>, Span<CieXyz>)

Performs the bulk conversion from CieLab into CieXyz.

public void Convert(ReadOnlySpan<CieLab> source, Span<CieXyz> destination)

Parameters

source ReadOnlySpan<CieLab>

The span to the source colors

destination Span<CieXyz>

The span to the destination colors

Convert(ReadOnlySpan<CieLab>, Span<Cmyk>)

Performs the bulk conversion from CieLab into Cmyk.

public void Convert(ReadOnlySpan<CieLab> source, Span<Cmyk> destination)

Parameters

source ReadOnlySpan<CieLab>

The span to the source colors

destination Span<Cmyk>

The span to the destination colors

Convert(ReadOnlySpan<CieLab>, Span<Hsl>)

Performs the bulk conversion from CieLab into Hsl.

public void Convert(ReadOnlySpan<CieLab> source, Span<Hsl> destination)

Parameters

source ReadOnlySpan<CieLab>

The span to the source colors

destination Span<Hsl>

The span to the destination colors

Convert(ReadOnlySpan<CieLab>, Span<Hsv>)

Performs the bulk conversion from CieLab into Hsv

public void Convert(ReadOnlySpan<CieLab> source, Span<Hsv> destination)

Parameters

source ReadOnlySpan<CieLab>

The span to the source colors

destination Span<Hsv>

The span to the destination colors

Convert(ReadOnlySpan<CieLab>, Span<HunterLab>)

Performs the bulk conversion from CieLab into HunterLab.

public void Convert(ReadOnlySpan<CieLab> source, Span<HunterLab> destination)

Parameters

source ReadOnlySpan<CieLab>

The span to the source colors.

destination Span<HunterLab>

The span to the destination colors.

Convert(ReadOnlySpan<CieLab>, Span<LinearRgb>)

Performs the bulk conversion from CieLab into LinearRgb.

public void Convert(ReadOnlySpan<CieLab> source, Span<LinearRgb> destination)

Parameters

source ReadOnlySpan<CieLab>

The span to the source colors.

destination Span<LinearRgb>

The span to the destination colors.

Convert(ReadOnlySpan<CieLab>, Span<Lms>)

Performs the bulk conversion from CieLab into Lms

public void Convert(ReadOnlySpan<CieLab> source, Span<Lms> destination)

Parameters

source ReadOnlySpan<CieLab>

The span to the source colors

destination Span<Lms>

The span to the destination colors

Convert(ReadOnlySpan<CieLab>, Span<Rgb>)

Performs the bulk conversion from CieLab into Rgb

public void Convert(ReadOnlySpan<CieLab> source, Span<Rgb> destination)

Parameters

source ReadOnlySpan<CieLab>

The span to the source colors

destination Span<Rgb>

The span to the destination colors

Convert(ReadOnlySpan<CieLab>, Span<YCbCr>)

Performs the bulk conversion from CieLab into YCbCr.

public void Convert(ReadOnlySpan<CieLab> source, Span<YCbCr> destination)

Parameters

source ReadOnlySpan<CieLab>

The span to the source colors.

destination Span<YCbCr>

The span to the destination colors.

Convert(ReadOnlySpan<CieLchuv>, Span<CieLab>)

Performs the bulk conversion from CieLchuv into CieLab.

public void Convert(ReadOnlySpan<CieLchuv> source, Span<CieLab> destination)

Parameters

source ReadOnlySpan<CieLchuv>

The span to the source colors

destination Span<CieLab>

The span to the destination colors

Convert(ReadOnlySpan<CieLchuv>, Span<CieLch>)

Performs the bulk conversion from CieLchuv into CieLch.

public void Convert(ReadOnlySpan<CieLchuv> source, Span<CieLch> destination)

Parameters

source ReadOnlySpan<CieLchuv>

The span to the source colors

destination Span<CieLch>

The span to the destination colors

Convert(ReadOnlySpan<CieLchuv>, Span<CieLuv>)

Performs the bulk conversion from CieLchuv into CieLuv.

public void Convert(ReadOnlySpan<CieLchuv> source, Span<CieLuv> destination)

Parameters

source ReadOnlySpan<CieLchuv>

The span to the source colors

destination Span<CieLuv>

The span to the destination colors

Convert(ReadOnlySpan<CieLchuv>, Span<CieXyy>)

Performs the bulk conversion from CieLchuv into CieXyy

public void Convert(ReadOnlySpan<CieLchuv> source, Span<CieXyy> destination)

Parameters

source ReadOnlySpan<CieLchuv>

The span to the source colors

destination Span<CieXyy>

The span to the destination colors

Convert(ReadOnlySpan<CieLchuv>, Span<CieXyz>)

Performs the bulk conversion from CieLchuv into CieXyz.

public void Convert(ReadOnlySpan<CieLchuv> source, Span<CieXyz> destination)

Parameters

source ReadOnlySpan<CieLchuv>

The span to the source colors

destination Span<CieXyz>

The span to the destination colors

Convert(ReadOnlySpan<CieLchuv>, Span<Cmyk>)

Performs the bulk conversion from CieLchuv into Cmyk

public void Convert(ReadOnlySpan<CieLchuv> source, Span<Cmyk> destination)

Parameters

source ReadOnlySpan<CieLchuv>

The span to the source colors

destination Span<Cmyk>

The span to the destination colors

Convert(ReadOnlySpan<CieLchuv>, Span<Hsl>)

Performs the bulk conversion from CieLchuv into Hsl.

public void Convert(ReadOnlySpan<CieLchuv> source, Span<Hsl> destination)

Parameters

source ReadOnlySpan<CieLchuv>

The span to the source colors

destination Span<Hsl>

The span to the destination colors

Convert(ReadOnlySpan<CieLchuv>, Span<Hsv>)

Performs the bulk conversion from CieLchuv into Hsv

public void Convert(ReadOnlySpan<CieLchuv> source, Span<Hsv> destination)

Parameters

source ReadOnlySpan<CieLchuv>

The span to the source colors

destination Span<Hsv>

The span to the destination colors

Convert(ReadOnlySpan<CieLchuv>, Span<HunterLab>)

Performs the bulk conversion from CieLchuv into HunterLab.

public void Convert(ReadOnlySpan<CieLchuv> source, Span<HunterLab> destination)

Parameters

source ReadOnlySpan<CieLchuv>

The span to the source colors

destination Span<HunterLab>

The span to the destination colors

Convert(ReadOnlySpan<CieLchuv>, Span<LinearRgb>)

Performs the bulk conversion from CieLchuv into LinearRgb.

public void Convert(ReadOnlySpan<CieLchuv> source, Span<LinearRgb> destination)

Parameters

source ReadOnlySpan<CieLchuv>

The span to the source colors.

destination Span<LinearRgb>

The span to the destination colors.

Convert(ReadOnlySpan<CieLchuv>, Span<Lms>)

Performs the bulk conversion from CieLchuv into Lms

public void Convert(ReadOnlySpan<CieLchuv> source, Span<Lms> destination)

Parameters

source ReadOnlySpan<CieLchuv>

The span to the source colors

destination Span<Lms>

The span to the destination colors

Convert(ReadOnlySpan<CieLchuv>, Span<Rgb>)

Performs the bulk conversion from CieLchuv into Rgb

public void Convert(ReadOnlySpan<CieLchuv> source, Span<Rgb> destination)

Parameters

source ReadOnlySpan<CieLchuv>

The span to the source colors

destination Span<Rgb>

The span to the destination colors

Convert(ReadOnlySpan<CieLch>, Span<CieLab>)

Performs the bulk conversion from CieLch into CieLab.

public void Convert(ReadOnlySpan<CieLch> source, Span<CieLab> destination)

Parameters

source ReadOnlySpan<CieLch>

The span to the source colors

destination Span<CieLab>

The span to the destination colors

Convert(ReadOnlySpan<CieLch>, Span<CieLchuv>)

Performs the bulk conversion from CieLch into CieLchuv.

public void Convert(ReadOnlySpan<CieLch> source, Span<CieLchuv> destination)

Parameters

source ReadOnlySpan<CieLch>

The span to the source colors

destination Span<CieLchuv>

The span to the destination colors

Convert(ReadOnlySpan<CieLch>, Span<CieLuv>)

Performs the bulk conversion from CieLch into CieLuv.

public void Convert(ReadOnlySpan<CieLch> source, Span<CieLuv> destination)

Parameters

source ReadOnlySpan<CieLch>

The span to the source colors

destination Span<CieLuv>

The span to the destination colors

Convert(ReadOnlySpan<CieLch>, Span<CieXyy>)

Performs the bulk conversion from CieLch into CieXyy

public void Convert(ReadOnlySpan<CieLch> source, Span<CieXyy> destination)

Parameters

source ReadOnlySpan<CieLch>

The span to the source colors

destination Span<CieXyy>

The span to the destination colors

Convert(ReadOnlySpan<CieLch>, Span<CieXyz>)

Performs the bulk conversion from CieLch into CieXyz.

public void Convert(ReadOnlySpan<CieLch> source, Span<CieXyz> destination)

Parameters

source ReadOnlySpan<CieLch>

The span to the source colors

destination Span<CieXyz>

The span to the destination colors

Convert(ReadOnlySpan<CieLch>, Span<Cmyk>)

Performs the bulk conversion from CieLch into Cmyk.

public void Convert(ReadOnlySpan<CieLch> source, Span<Cmyk> destination)

Parameters

source ReadOnlySpan<CieLch>

The span to the source colors

destination Span<Cmyk>

The span to the destination colors

Convert(ReadOnlySpan<CieLch>, Span<Hsl>)

Performs the bulk conversion from CieLch into Hsl.

public void Convert(ReadOnlySpan<CieLch> source, Span<Hsl> destination)

Parameters

source ReadOnlySpan<CieLch>

The span to the source colors

destination Span<Hsl>

The span to the destination colors

Convert(ReadOnlySpan<CieLch>, Span<Hsv>)

Performs the bulk conversion from CieLch into Hsv

public void Convert(ReadOnlySpan<CieLch> source, Span<Hsv> destination)

Parameters

source ReadOnlySpan<CieLch>

The span to the source colors

destination Span<Hsv>

The span to the destination colors

Convert(ReadOnlySpan<CieLch>, Span<HunterLab>)

Performs the bulk conversion from CieLch into HunterLab.

public void Convert(ReadOnlySpan<CieLch> source, Span<HunterLab> destination)

Parameters

source ReadOnlySpan<CieLch>

The span to the source colors.

destination Span<HunterLab>

The span to the destination colors.

Convert(ReadOnlySpan<CieLch>, Span<LinearRgb>)

Performs the bulk conversion from CieLch into LinearRgb.

public void Convert(ReadOnlySpan<CieLch> source, Span<LinearRgb> destination)

Parameters

source ReadOnlySpan<CieLch>

The span to the source colors.

destination Span<LinearRgb>

The span to the destination colors.

Convert(ReadOnlySpan<CieLch>, Span<Lms>)

Performs the bulk conversion from CieLch into Lms

public void Convert(ReadOnlySpan<CieLch> source, Span<Lms> destination)

Parameters

source ReadOnlySpan<CieLch>

The span to the source colors

destination Span<Lms>

The span to the destination colors

Convert(ReadOnlySpan<CieLch>, Span<Rgb>)

Performs the bulk conversion from CieLch into Rgb

public void Convert(ReadOnlySpan<CieLch> source, Span<Rgb> destination)

Parameters

source ReadOnlySpan<CieLch>

The span to the source colors

destination Span<Rgb>

The span to the destination colors

Convert(ReadOnlySpan<CieLch>, Span<YCbCr>)

Performs the bulk conversion from CieLch into YCbCr.

public void Convert(ReadOnlySpan<CieLch> source, Span<YCbCr> destination)

Parameters

source ReadOnlySpan<CieLch>

The span to the source colors.

destination Span<YCbCr>

The span to the destination colors.

Convert(ReadOnlySpan<CieLuv>, Span<CieLab>)

Performs the bulk conversion from CieLuv into CieLab.

public void Convert(ReadOnlySpan<CieLuv> source, Span<CieLab> destination)

Parameters

source ReadOnlySpan<CieLuv>

The span to the source colors

destination Span<CieLab>

The span to the destination colors

Convert(ReadOnlySpan<CieLuv>, Span<CieLchuv>)

Performs the bulk conversion from CieLuv into CieLchuv.

public void Convert(ReadOnlySpan<CieLuv> source, Span<CieLchuv> destination)

Parameters

source ReadOnlySpan<CieLuv>

The span to the source colors

destination Span<CieLchuv>

The span to the destination colors

Convert(ReadOnlySpan<CieLuv>, Span<CieLch>)

Performs the bulk conversion from CieLuv into CieLch.

public void Convert(ReadOnlySpan<CieLuv> source, Span<CieLch> destination)

Parameters

source ReadOnlySpan<CieLuv>

The span to the source colors

destination Span<CieLch>

The span to the destination colors

Convert(ReadOnlySpan<CieLuv>, Span<CieXyy>)

Performs the bulk conversion from CieLuv into CieXyy

public void Convert(ReadOnlySpan<CieLuv> source, Span<CieXyy> destination)

Parameters

source ReadOnlySpan<CieLuv>

The span to the source colors

destination Span<CieXyy>

The span to the destination colors

Convert(ReadOnlySpan<CieLuv>, Span<CieXyz>)

Performs the bulk conversion from CieLuv into CieXyz.

public void Convert(ReadOnlySpan<CieLuv> source, Span<CieXyz> destination)

Parameters

source ReadOnlySpan<CieLuv>

The span to the source colors

destination Span<CieXyz>

The span to the destination colors

Convert(ReadOnlySpan<CieLuv>, Span<Cmyk>)

Performs the bulk conversion from CieLuv into Cmyk

public void Convert(ReadOnlySpan<CieLuv> source, Span<Cmyk> destination)

Parameters

source ReadOnlySpan<CieLuv>

The span to the source colors

destination Span<Cmyk>

The span to the destination colors

Convert(ReadOnlySpan<CieLuv>, Span<Hsl>)

Performs the bulk conversion from CieLuv into Hsl.

public void Convert(ReadOnlySpan<CieLuv> source, Span<Hsl> destination)

Parameters

source ReadOnlySpan<CieLuv>

The span to the source colors

destination Span<Hsl>

The span to the destination colors

Convert(ReadOnlySpan<CieLuv>, Span<Hsv>)

Performs the bulk conversion from CieLuv into Hsv

public void Convert(ReadOnlySpan<CieLuv> source, Span<Hsv> destination)

Parameters

source ReadOnlySpan<CieLuv>

The span to the source colors

destination Span<Hsv>

The span to the destination colors

Convert(ReadOnlySpan<CieLuv>, Span<HunterLab>)

Performs the bulk conversion from CieLuv into HunterLab.

public void Convert(ReadOnlySpan<CieLuv> source, Span<HunterLab> destination)

Parameters

source ReadOnlySpan<CieLuv>

The span to the source colors

destination Span<HunterLab>

The span to the destination colors

Convert(ReadOnlySpan<CieLuv>, Span<LinearRgb>)

Performs the bulk conversion from CieLuv into LinearRgb.

public void Convert(ReadOnlySpan<CieLuv> source, Span<LinearRgb> destination)

Parameters

source ReadOnlySpan<CieLuv>

The span to the source colors.

destination Span<LinearRgb>

The span to the destination colors.

Convert(ReadOnlySpan<CieLuv>, Span<Lms>)

Performs the bulk conversion from CieLuv into Lms

public void Convert(ReadOnlySpan<CieLuv> source, Span<Lms> destination)

Parameters

source ReadOnlySpan<CieLuv>

The span to the source colors

destination Span<Lms>

The span to the destination colors

Convert(ReadOnlySpan<CieLuv>, Span<Rgb>)

Performs the bulk conversion from CieLuv into Rgb

public void Convert(ReadOnlySpan<CieLuv> source, Span<Rgb> destination)

Parameters

source ReadOnlySpan<CieLuv>

The span to the source colors

destination Span<Rgb>

The span to the destination colors

Convert(ReadOnlySpan<CieLuv>, Span<YCbCr>)

Performs the bulk conversion from CieLuv into YCbCr.

public void Convert(ReadOnlySpan<CieLuv> source, Span<YCbCr> destination)

Parameters

source ReadOnlySpan<CieLuv>

The span to the source colors

destination Span<YCbCr>

The span to the destination colors

Convert(ReadOnlySpan<CieXyy>, Span<CieLab>)

Performs the bulk conversion from CieXyy into CieLab.

public void Convert(ReadOnlySpan<CieXyy> source, Span<CieLab> destination)

Parameters

source ReadOnlySpan<CieXyy>

The span to the source colors

destination Span<CieLab>

The span to the destination colors

Convert(ReadOnlySpan<CieXyy>, Span<CieLchuv>)

Performs the bulk conversion from CieXyy into CieLchuv.

public void Convert(ReadOnlySpan<CieXyy> source, Span<CieLchuv> destination)

Parameters

source ReadOnlySpan<CieXyy>

The span to the source colors

destination Span<CieLchuv>

The span to the destination colors

Convert(ReadOnlySpan<CieXyy>, Span<CieLch>)

Performs the bulk conversion from CieXyy into CieLch.

public void Convert(ReadOnlySpan<CieXyy> source, Span<CieLch> destination)

Parameters

source ReadOnlySpan<CieXyy>

The span to the source colors

destination Span<CieLch>

The span to the destination colors

Convert(ReadOnlySpan<CieXyy>, Span<CieLuv>)

Performs the bulk conversion from CieXyy into CieLuv.

public void Convert(ReadOnlySpan<CieXyy> source, Span<CieLuv> destination)

Parameters

source ReadOnlySpan<CieXyy>

The span to the source colors

destination Span<CieLuv>

The span to the destination colors

Convert(ReadOnlySpan<CieXyy>, Span<CieXyz>)

Performs the bulk conversion from CieXyy into CieXyz.

public static void Convert(ReadOnlySpan<CieXyy> source, Span<CieXyz> destination)

Parameters

source ReadOnlySpan<CieXyy>

The span to the source colors

destination Span<CieXyz>

The span to the destination colors

Convert(ReadOnlySpan<CieXyy>, Span<Cmyk>)

Performs the bulk conversion from CieXyy into Cmyk.

public void Convert(ReadOnlySpan<CieXyy> source, Span<Cmyk> destination)

Parameters

source ReadOnlySpan<CieXyy>

The span to the source colors

destination Span<Cmyk>

The span to the destination colors

Convert(ReadOnlySpan<CieXyy>, Span<Hsl>)

Performs the bulk conversion from CieXyy into Hsl

public void Convert(ReadOnlySpan<CieXyy> source, Span<Hsl> destination)

Parameters

source ReadOnlySpan<CieXyy>

The span to the source colors

destination Span<Hsl>

The span to the destination colors

Convert(ReadOnlySpan<CieXyy>, Span<Hsv>)

Performs the bulk conversion from CieXyy into Hsv

public void Convert(ReadOnlySpan<CieXyy> source, Span<Hsv> destination)

Parameters

source ReadOnlySpan<CieXyy>

The span to the source colors

destination Span<Hsv>

The span to the destination colors

Convert(ReadOnlySpan<CieXyy>, Span<HunterLab>)

Performs the bulk conversion from CieXyy into HunterLab.

public void Convert(ReadOnlySpan<CieXyy> source, Span<HunterLab> destination)

Parameters

source ReadOnlySpan<CieXyy>

The span to the source colors.

destination Span<HunterLab>

The span to the destination colors.

Convert(ReadOnlySpan<CieXyy>, Span<LinearRgb>)

Performs the bulk conversion from CieXyy into LinearRgb.

public void Convert(ReadOnlySpan<CieXyy> source, Span<LinearRgb> destination)

Parameters

source ReadOnlySpan<CieXyy>

The span to the source colors.

destination Span<LinearRgb>

The span to the destination colors.

Convert(ReadOnlySpan<CieXyy>, Span<Lms>)

Performs the bulk conversion from CieXyy into Lms

public void Convert(ReadOnlySpan<CieXyy> source, Span<Lms> destination)

Parameters

source ReadOnlySpan<CieXyy>

The span to the source colors

destination Span<Lms>

The span to the destination colors

Convert(ReadOnlySpan<CieXyy>, Span<Rgb>)

Performs the bulk conversion from CieXyy into Rgb

public void Convert(ReadOnlySpan<CieXyy> source, Span<Rgb> destination)

Parameters

source ReadOnlySpan<CieXyy>

The span to the source colors

destination Span<Rgb>

The span to the destination colors

Convert(ReadOnlySpan<CieXyy>, Span<YCbCr>)

Performs the bulk conversion from CieXyy into YCbCr

public void Convert(ReadOnlySpan<CieXyy> source, Span<YCbCr> destination)

Parameters

source ReadOnlySpan<CieXyy>

The span to the source colors

destination Span<YCbCr>

The span to the destination colors

Convert(ReadOnlySpan<CieXyz>, Span<CieLab>)

Performs the bulk conversion from CieXyz into CieLab

public void Convert(ReadOnlySpan<CieXyz> source, Span<CieLab> destination)

Parameters

source ReadOnlySpan<CieXyz>

The span to the source colors

destination Span<CieLab>

The span to the destination colors

Convert(ReadOnlySpan<CieXyz>, Span<CieLchuv>)

Performs the bulk conversion from CieXyz into CieLchuv.

public void Convert(ReadOnlySpan<CieXyz> source, Span<CieLchuv> destination)

Parameters

source ReadOnlySpan<CieXyz>

The span to the source colors

destination Span<CieLchuv>

The span to the destination colors

Convert(ReadOnlySpan<CieXyz>, Span<CieLch>)

Performs the bulk conversion from CieXyz into CieLch.

public void Convert(ReadOnlySpan<CieXyz> source, Span<CieLch> destination)

Parameters

source ReadOnlySpan<CieXyz>

The span to the source colors

destination Span<CieLch>

The span to the destination colors

Convert(ReadOnlySpan<CieXyz>, Span<CieLuv>)

Performs the bulk conversion from CieXyz into CieLuv.

public void Convert(ReadOnlySpan<CieXyz> source, Span<CieLuv> destination)

Parameters

source ReadOnlySpan<CieXyz>

The span to the source colors

destination Span<CieLuv>

The span to the destination colors

Convert(ReadOnlySpan<CieXyz>, Span<CieXyy>)

Performs the bulk conversion from CieXyz into CieXyy

public static void Convert(ReadOnlySpan<CieXyz> source, Span<CieXyy> destination)

Parameters

source ReadOnlySpan<CieXyz>

The span to the source colors

destination Span<CieXyy>

The span to the destination colors

Convert(ReadOnlySpan<CieXyz>, Span<Cmyk>)

Performs the bulk conversion from CieXyz into Cmyk

public void Convert(ReadOnlySpan<CieXyz> source, Span<Cmyk> destination)

Parameters

source ReadOnlySpan<CieXyz>

The span to the source colors

destination Span<Cmyk>

The span to the destination colors

Convert(ReadOnlySpan<CieXyz>, Span<Hsl>)

Performs the bulk conversion from CieXyz into Hsl

public void Convert(ReadOnlySpan<CieXyz> source, Span<Hsl> destination)

Parameters

source ReadOnlySpan<CieXyz>

The span to the source colors

destination Span<Hsl>

The span to the destination colors

Convert(ReadOnlySpan<CieXyz>, Span<Hsv>)

Performs the bulk conversion from CieXyz into Hsv

public void Convert(ReadOnlySpan<CieXyz> source, Span<Hsv> destination)

Parameters

source ReadOnlySpan<CieXyz>

The span to the source colors

destination Span<Hsv>

The span to the destination colors

Convert(ReadOnlySpan<CieXyz>, Span<HunterLab>)

Performs the bulk conversion from CieXyz into HunterLab.

public void Convert(ReadOnlySpan<CieXyz> source, Span<HunterLab> destination)

Parameters

source ReadOnlySpan<CieXyz>

The span to the source colors.

destination Span<HunterLab>

The span to the destination colors.

Convert(ReadOnlySpan<CieXyz>, Span<LinearRgb>)

Performs the bulk conversion from CieXyz into LinearRgb.

public void Convert(ReadOnlySpan<CieXyz> source, Span<LinearRgb> destination)

Parameters

source ReadOnlySpan<CieXyz>

The span to the source colors.

destination Span<LinearRgb>

The span to the destination colors.

Convert(ReadOnlySpan<CieXyz>, Span<Lms>)

Performs the bulk conversion from CieXyz into Lms

public void Convert(ReadOnlySpan<CieXyz> source, Span<Lms> destination)

Parameters

source ReadOnlySpan<CieXyz>

The span to the source colors

destination Span<Lms>

The span to the destination colors

Convert(ReadOnlySpan<CieXyz>, Span<Rgb>)

Performs the bulk conversion from CieXyz into Rgb

public void Convert(ReadOnlySpan<CieXyz> source, Span<Rgb> destination)

Parameters

source ReadOnlySpan<CieXyz>

The span to the source colors

destination Span<Rgb>

The span to the destination colors

Convert(ReadOnlySpan<CieXyz>, Span<YCbCr>)

Performs the bulk conversion from CieXyz into YCbCr.

public void Convert(ReadOnlySpan<CieXyz> source, Span<YCbCr> destination)

Parameters

source ReadOnlySpan<CieXyz>

The span to the source colors

destination Span<YCbCr>

The span to the destination colors

Convert(ReadOnlySpan<Cmyk>, Span<CieLab>)

Performs the bulk conversion from Cmyk into CieLab.

public void Convert(ReadOnlySpan<Cmyk> source, Span<CieLab> destination)

Parameters

source ReadOnlySpan<Cmyk>

The span to the source colors

destination Span<CieLab>

The span to the destination colors

Convert(ReadOnlySpan<Cmyk>, Span<CieLchuv>)

Performs the bulk conversion from Cmyk into CieLchuv.

public void Convert(ReadOnlySpan<Cmyk> source, Span<CieLchuv> destination)

Parameters

source ReadOnlySpan<Cmyk>

The span to the source colors

destination Span<CieLchuv>

The span to the destination colors

Convert(ReadOnlySpan<Cmyk>, Span<CieLch>)

Performs the bulk conversion from Cmyk into CieLch.

public void Convert(ReadOnlySpan<Cmyk> source, Span<CieLch> destination)

Parameters

source ReadOnlySpan<Cmyk>

The span to the source colors

destination Span<CieLch>

The span to the destination colors

Convert(ReadOnlySpan<Cmyk>, Span<CieLuv>)

Performs the bulk conversion from Cmyk into CieLuv.

public void Convert(ReadOnlySpan<Cmyk> source, Span<CieLuv> destination)

Parameters

source ReadOnlySpan<Cmyk>

The span to the source colors

destination Span<CieLuv>

The span to the destination colors

Convert(ReadOnlySpan<Cmyk>, Span<CieXyy>)

Performs the bulk conversion from Cmyk into CieXyy

public void Convert(ReadOnlySpan<Cmyk> source, Span<CieXyy> destination)

Parameters

source ReadOnlySpan<Cmyk>

The span to the source colors

destination Span<CieXyy>

The span to the destination colors

Convert(ReadOnlySpan<Cmyk>, Span<CieXyz>)

Performs the bulk conversion from Cmyk into CieXyz.

public void Convert(ReadOnlySpan<Cmyk> source, Span<CieXyz> destination)

Parameters

source ReadOnlySpan<Cmyk>

The span to the source colors

destination Span<CieXyz>

The span to the destination colors

Convert(ReadOnlySpan<Cmyk>, Span<Hsl>)

Performs the bulk conversion from Cmyk into Hsl

public static void Convert(ReadOnlySpan<Cmyk> source, Span<Hsl> destination)

Parameters

source ReadOnlySpan<Cmyk>

The span to the source colors

destination Span<Hsl>

The span to the destination colors

Convert(ReadOnlySpan<Cmyk>, Span<Hsv>)

Performs the bulk conversion from Cmyk into Hsv

public static void Convert(ReadOnlySpan<Cmyk> source, Span<Hsv> destination)

Parameters

source ReadOnlySpan<Cmyk>

The span to the source colors

destination Span<Hsv>

The span to the destination colors

Convert(ReadOnlySpan<Cmyk>, Span<HunterLab>)

Performs the bulk conversion from Cmyk into HunterLab.

public void Convert(ReadOnlySpan<Cmyk> source, Span<HunterLab> destination)

Parameters

source ReadOnlySpan<Cmyk>

The span to the source colors

destination Span<HunterLab>

The span to the destination colors

Convert(ReadOnlySpan<Cmyk>, Span<LinearRgb>)

Performs the bulk conversion from Cmyk into LinearRgb.

public static void Convert(ReadOnlySpan<Cmyk> source, Span<LinearRgb> destination)

Parameters

source ReadOnlySpan<Cmyk>

The span to the source colors.

destination Span<LinearRgb>

The span to the destination colors.

Convert(ReadOnlySpan<Cmyk>, Span<Lms>)

Performs the bulk conversion from Cmyk into Lms

public void Convert(ReadOnlySpan<Cmyk> source, Span<Lms> destination)

Parameters

source ReadOnlySpan<Cmyk>

The span to the source colors

destination Span<Lms>

The span to the destination colors

Convert(ReadOnlySpan<Cmyk>, Span<Rgb>)

Performs the bulk conversion from Cmyk into Rgb

public static void Convert(ReadOnlySpan<Cmyk> source, Span<Rgb> destination)

Parameters

source ReadOnlySpan<Cmyk>

The span to the source colors

destination Span<Rgb>

The span to the destination colors

Convert(ReadOnlySpan<Cmyk>, Span<YCbCr>)

Performs the bulk conversion from Cmyk into YCbCr.

public static void Convert(ReadOnlySpan<Cmyk> source, Span<YCbCr> destination)

Parameters

source ReadOnlySpan<Cmyk>

The span to the source colors

destination Span<YCbCr>

The span to the destination colors

Convert(ReadOnlySpan<Hsl>, Span<CieLab>)

Performs the bulk conversion from Hsl into CieLab.

public void Convert(ReadOnlySpan<Hsl> source, Span<CieLab> destination)

Parameters

source ReadOnlySpan<Hsl>

The span to the source colors

destination Span<CieLab>

The span to the destination colors

Convert(ReadOnlySpan<Hsl>, Span<CieLchuv>)

Performs the bulk conversion from Hsl into CieLchuv

public void Convert(ReadOnlySpan<Hsl> source, Span<CieLchuv> destination)

Parameters

source ReadOnlySpan<Hsl>

The span to the source colors

destination Span<CieLchuv>

The span to the destination colors

Convert(ReadOnlySpan<Hsl>, Span<CieLch>)

Performs the bulk conversion from Hsl into CieLch.

public void Convert(ReadOnlySpan<Hsl> source, Span<CieLch> destination)

Parameters

source ReadOnlySpan<Hsl>

The span to the source colors

destination Span<CieLch>

The span to the destination colors

Convert(ReadOnlySpan<Hsl>, Span<CieLuv>)

Performs the bulk conversion from Hsl into CieLuv.

public void Convert(ReadOnlySpan<Hsl> source, Span<CieLuv> destination)

Parameters

source ReadOnlySpan<Hsl>

The span to the source colors

destination Span<CieLuv>

The span to the destination colors

Convert(ReadOnlySpan<Hsl>, Span<CieXyy>)

Performs the bulk conversion from Hsl into CieXyy

public void Convert(ReadOnlySpan<Hsl> source, Span<CieXyy> destination)

Parameters

source ReadOnlySpan<Hsl>

The span to the source colors

destination Span<CieXyy>

The span to the destination colors

Convert(ReadOnlySpan<Hsl>, Span<CieXyz>)

Performs the bulk conversion from Hsl into CieXyz.

public void Convert(ReadOnlySpan<Hsl> source, Span<CieXyz> destination)

Parameters

source ReadOnlySpan<Hsl>

The span to the source colors.

destination Span<CieXyz>

The span to the destination colors.

Convert(ReadOnlySpan<Hsl>, Span<Cmyk>)

Performs the bulk conversion from Hsl into Cmyk.

public static void Convert(ReadOnlySpan<Hsl> source, Span<Cmyk> destination)

Parameters

source ReadOnlySpan<Hsl>

The span to the source colors

destination Span<Cmyk>

The span to the destination colors

Convert(ReadOnlySpan<Hsl>, Span<Hsv>)

Performs the bulk conversion from Hsl into Hsv

public static void Convert(ReadOnlySpan<Hsl> source, Span<Hsv> destination)

Parameters

source ReadOnlySpan<Hsl>

The span to the source colors

destination Span<Hsv>

The span to the destination colors.

Convert(ReadOnlySpan<Hsl>, Span<HunterLab>)

Performs the bulk conversion from Hsl into HunterLab.

public void Convert(ReadOnlySpan<Hsl> source, Span<HunterLab> destination)

Parameters

source ReadOnlySpan<Hsl>

The span to the source colors

destination Span<HunterLab>

The span to the destination colors.

Convert(ReadOnlySpan<Hsl>, Span<LinearRgb>)

Performs the bulk conversion from Hsl into LinearRgb.

public static void Convert(ReadOnlySpan<Hsl> source, Span<LinearRgb> destination)

Parameters

source ReadOnlySpan<Hsl>

The span to the source colors.

destination Span<LinearRgb>

The span to the destination colors.

Convert(ReadOnlySpan<Hsl>, Span<Lms>)

Performs the bulk conversion from Hsl into Lms

public void Convert(ReadOnlySpan<Hsl> source, Span<Lms> destination)

Parameters

source ReadOnlySpan<Hsl>

The span to the source colors

destination Span<Lms>

The span to the destination colors

Convert(ReadOnlySpan<Hsl>, Span<Rgb>)

Performs the bulk conversion from Hsl into Rgb

public static void Convert(ReadOnlySpan<Hsl> source, Span<Rgb> destination)

Parameters

source ReadOnlySpan<Hsl>

The span to the source colors

destination Span<Rgb>

The span to the destination colors

Convert(ReadOnlySpan<Hsl>, Span<YCbCr>)

Performs the bulk conversion from Hsl into YCbCr.

public static void Convert(ReadOnlySpan<Hsl> source, Span<YCbCr> destination)

Parameters

source ReadOnlySpan<Hsl>

The span to the source colors

destination Span<YCbCr>

The span to the destination colors

Convert(ReadOnlySpan<Hsv>, Span<CieLab>)

Performs the bulk conversion from Hsv into CieLab.

public void Convert(ReadOnlySpan<Hsv> source, Span<CieLab> destination)

Parameters

source ReadOnlySpan<Hsv>

The span to the source colors

destination Span<CieLab>

The span to the destination colors

Convert(ReadOnlySpan<Hsv>, Span<CieLchuv>)

Performs the bulk conversion from Hsv into CieLchuv.

public void Convert(ReadOnlySpan<Hsv> source, Span<CieLchuv> destination)

Parameters

source ReadOnlySpan<Hsv>

The span to the source colors

destination Span<CieLchuv>

The span to the destination colors

Convert(ReadOnlySpan<Hsv>, Span<CieLch>)

Performs the bulk conversion from Hsv into CieLch.

public void Convert(ReadOnlySpan<Hsv> source, Span<CieLch> destination)

Parameters

source ReadOnlySpan<Hsv>

The span to the source colors

destination Span<CieLch>

The span to the destination colors

Convert(ReadOnlySpan<Hsv>, Span<CieLuv>)

Performs the bulk conversion from Hsv into CieLuv.

public void Convert(ReadOnlySpan<Hsv> source, Span<CieLuv> destination)

Parameters

source ReadOnlySpan<Hsv>

The span to the source colors

destination Span<CieLuv>

The span to the destination colors

Convert(ReadOnlySpan<Hsv>, Span<CieXyy>)

Performs the bulk conversion from Hsv into CieXyy

public void Convert(ReadOnlySpan<Hsv> source, Span<CieXyy> destination)

Parameters

source ReadOnlySpan<Hsv>

The span to the source colors

destination Span<CieXyy>

The span to the destination colors

Convert(ReadOnlySpan<Hsv>, Span<CieXyz>)

Performs the bulk conversion from Hsv into CieXyz.

public void Convert(ReadOnlySpan<Hsv> source, Span<CieXyz> destination)

Parameters

source ReadOnlySpan<Hsv>

The span to the source colors

destination Span<CieXyz>

The span to the destination colors

Convert(ReadOnlySpan<Hsv>, Span<Cmyk>)

Performs the bulk conversion from Hsv into Cmyk.

public static void Convert(ReadOnlySpan<Hsv> source, Span<Cmyk> destination)

Parameters

source ReadOnlySpan<Hsv>

The span to the source colors

destination Span<Cmyk>

The span to the destination colors

Convert(ReadOnlySpan<Hsv>, Span<Hsl>)

Performs the bulk conversion from Hsv into Hsl

public static void Convert(ReadOnlySpan<Hsv> source, Span<Hsl> destination)

Parameters

source ReadOnlySpan<Hsv>

The span to the source colors

destination Span<Hsl>

The span to the destination colors

Convert(ReadOnlySpan<Hsv>, Span<HunterLab>)

Performs the bulk conversion from Hsl into HunterLab.

public void Convert(ReadOnlySpan<Hsv> source, Span<HunterLab> destination)

Parameters

source ReadOnlySpan<Hsv>

The span to the source colors

destination Span<HunterLab>

The span to the destination colors

Convert(ReadOnlySpan<Hsv>, Span<LinearRgb>)

Performs the bulk conversion from Hsv into LinearRgb.

public static void Convert(ReadOnlySpan<Hsv> source, Span<LinearRgb> destination)

Parameters

source ReadOnlySpan<Hsv>

The span to the source colors.

destination Span<LinearRgb>

The span to the destination colors.

Convert(ReadOnlySpan<Hsv>, Span<Lms>)

Performs the bulk conversion from Hsv into Lms

public void Convert(ReadOnlySpan<Hsv> source, Span<Lms> destination)

Parameters

source ReadOnlySpan<Hsv>

The span to the source colors

destination Span<Lms>

The span to the destination colors

Convert(ReadOnlySpan<Hsv>, Span<Rgb>)

Performs the bulk conversion from Hsv into Rgb

public static void Convert(ReadOnlySpan<Hsv> source, Span<Rgb> destination)

Parameters

source ReadOnlySpan<Hsv>

The span to the source colors

destination Span<Rgb>

The span to the destination colors

Convert(ReadOnlySpan<Hsv>, Span<YCbCr>)

Performs the bulk conversion from Hsv into YCbCr.

public static void Convert(ReadOnlySpan<Hsv> source, Span<YCbCr> destination)

Parameters

source ReadOnlySpan<Hsv>

The span to the source colors

destination Span<YCbCr>

The span to the destination colors

Convert(ReadOnlySpan<HunterLab>, Span<CieLab>)

Performs the bulk conversion from HunterLab into CieLab.

public void Convert(ReadOnlySpan<HunterLab> source, Span<CieLab> destination)

Parameters

source ReadOnlySpan<HunterLab>

The span to the source colors

destination Span<CieLab>

The span to the destination colors

Convert(ReadOnlySpan<HunterLab>, Span<CieLchuv>)

Performs the bulk conversion from HunterLab into CieLchuv.

public void Convert(ReadOnlySpan<HunterLab> source, Span<CieLchuv> destination)

Parameters

source ReadOnlySpan<HunterLab>

The span to the source colors

destination Span<CieLchuv>

The span to the destination colors

Convert(ReadOnlySpan<HunterLab>, Span<CieLch>)

Performs the bulk conversion from HunterLab into CieLch.

public void Convert(ReadOnlySpan<HunterLab> source, Span<CieLch> destination)

Parameters

source ReadOnlySpan<HunterLab>

The span to the source colors

destination Span<CieLch>

The span to the destination colors

Convert(ReadOnlySpan<HunterLab>, Span<CieLuv>)

Performs the bulk conversion from HunterLab into CieLuv.

public void Convert(ReadOnlySpan<HunterLab> source, Span<CieLuv> destination)

Parameters

source ReadOnlySpan<HunterLab>

The span to the source colors

destination Span<CieLuv>

The span to the destination colors

Convert(ReadOnlySpan<HunterLab>, Span<CieXyy>)

Performs the bulk conversion from HunterLab into CieXyy

public void Convert(ReadOnlySpan<HunterLab> source, Span<CieXyy> destination)

Parameters

source ReadOnlySpan<HunterLab>

The span to the source colors

destination Span<CieXyy>

The span to the destination colors

Convert(ReadOnlySpan<HunterLab>, Span<CieXyz>)

Performs the bulk conversion from HunterLab into CieXyz.

public void Convert(ReadOnlySpan<HunterLab> source, Span<CieXyz> destination)

Parameters

source ReadOnlySpan<HunterLab>

The span to the source colors

destination Span<CieXyz>

The span to the destination colors

Convert(ReadOnlySpan<HunterLab>, Span<Cmyk>)

Performs the bulk conversion from HunterLab into Cmyk.

public void Convert(ReadOnlySpan<HunterLab> source, Span<Cmyk> destination)

Parameters

source ReadOnlySpan<HunterLab>

The span to the source colors

destination Span<Cmyk>

The span to the destination colors

Convert(ReadOnlySpan<HunterLab>, Span<Hsl>)

Performs the bulk conversion from HunterLab into Hsl.

public void Convert(ReadOnlySpan<HunterLab> source, Span<Hsl> destination)

Parameters

source ReadOnlySpan<HunterLab>

The span to the source colors

destination Span<Hsl>

The span to the destination colors

Convert(ReadOnlySpan<HunterLab>, Span<Hsv>)

Performs the bulk conversion from HunterLab into Hsv

public void Convert(ReadOnlySpan<HunterLab> source, Span<Hsv> destination)

Parameters

source ReadOnlySpan<HunterLab>

The span to the source colors

destination Span<Hsv>

The span to the destination colors

Convert(ReadOnlySpan<HunterLab>, Span<LinearRgb>)

Performs the bulk conversion from HunterLab into LinearRgb.

public void Convert(ReadOnlySpan<HunterLab> source, Span<LinearRgb> destination)

Parameters

source ReadOnlySpan<HunterLab>

The span to the source colors.

destination Span<LinearRgb>

The span to the destination colors.

Convert(ReadOnlySpan<HunterLab>, Span<Lms>)

Performs the bulk conversion from HunterLab into Lms

public void Convert(ReadOnlySpan<HunterLab> source, Span<Lms> destination)

Parameters

source ReadOnlySpan<HunterLab>

The span to the source colors

destination Span<Lms>

The span to the destination colors

Convert(ReadOnlySpan<HunterLab>, Span<Rgb>)

Performs the bulk conversion from HunterLab into Rgb

public void Convert(ReadOnlySpan<HunterLab> source, Span<Rgb> destination)

Parameters

source ReadOnlySpan<HunterLab>

The span to the source colors

destination Span<Rgb>

The span to the destination colors

Convert(ReadOnlySpan<HunterLab>, Span<YCbCr>)

Performs the bulk conversion from HunterLab into YCbCr.

public void Convert(ReadOnlySpan<HunterLab> source, Span<YCbCr> destination)

Parameters

source ReadOnlySpan<HunterLab>

The span to the source colors

destination Span<YCbCr>

The span to the destination colors

Convert(ReadOnlySpan<LinearRgb>, Span<CieLab>)

Performs the bulk conversion from LinearRgb into CieLab.

public void Convert(ReadOnlySpan<LinearRgb> source, Span<CieLab> destination)

Parameters

source ReadOnlySpan<LinearRgb>

The span to the source colors

destination Span<CieLab>

The span to the destination colors

Convert(ReadOnlySpan<LinearRgb>, Span<CieLchuv>)

Performs the bulk conversion from LinearRgb into CieLchuv.

public void Convert(ReadOnlySpan<LinearRgb> source, Span<CieLchuv> destination)

Parameters

source ReadOnlySpan<LinearRgb>

The span to the source colors

destination Span<CieLchuv>

The span to the destination colors

Convert(ReadOnlySpan<LinearRgb>, Span<CieLch>)

Performs the bulk conversion from LinearRgb into CieLch.

public void Convert(ReadOnlySpan<LinearRgb> source, Span<CieLch> destination)

Parameters

source ReadOnlySpan<LinearRgb>

The span to the source colors

destination Span<CieLch>

The span to the destination colors

Convert(ReadOnlySpan<LinearRgb>, Span<CieLuv>)

Performs the bulk conversion from LinearRgb into CieLuv.

public void Convert(ReadOnlySpan<LinearRgb> source, Span<CieLuv> destination)

Parameters

source ReadOnlySpan<LinearRgb>

The span to the source colors

destination Span<CieLuv>

The span to the destination colors

Convert(ReadOnlySpan<LinearRgb>, Span<CieXyy>)

Performs the bulk conversion from LinearRgb into CieXyy

public void Convert(ReadOnlySpan<LinearRgb> source, Span<CieXyy> destination)

Parameters

source ReadOnlySpan<LinearRgb>

The span to the source colors

destination Span<CieXyy>

The span to the destination colors

Convert(ReadOnlySpan<LinearRgb>, Span<CieXyz>)

Performs the bulk conversion from LinearRgb into CieXyz.

public void Convert(ReadOnlySpan<LinearRgb> source, Span<CieXyz> destination)

Parameters

source ReadOnlySpan<LinearRgb>

The span to the source colors.

destination Span<CieXyz>

The span to the destination colors.

Convert(ReadOnlySpan<LinearRgb>, Span<Cmyk>)

Performs the bulk conversion from LinearRgb into Cmyk.

public static void Convert(ReadOnlySpan<LinearRgb> source, Span<Cmyk> destination)

Parameters

source ReadOnlySpan<LinearRgb>

The span to the source colors

destination Span<Cmyk>

The span to the destination colors

Convert(ReadOnlySpan<LinearRgb>, Span<Hsl>)

Performs the bulk conversion from LinearRgb into Hsl.

public static void Convert(ReadOnlySpan<LinearRgb> source, Span<Hsl> destination)

Parameters

source ReadOnlySpan<LinearRgb>

The span to the source colors

destination Span<Hsl>

The span to the destination colors

Convert(ReadOnlySpan<LinearRgb>, Span<Hsv>)

Performs the bulk conversion from LinearRgb into Hsv

public static void Convert(ReadOnlySpan<LinearRgb> source, Span<Hsv> destination)

Parameters

source ReadOnlySpan<LinearRgb>

The span to the source colors

destination Span<Hsv>

The span to the destination colors

Convert(ReadOnlySpan<LinearRgb>, Span<HunterLab>)

Performs the bulk conversion from LinearRgb into HunterLab

public void Convert(ReadOnlySpan<LinearRgb> source, Span<HunterLab> destination)

Parameters

source ReadOnlySpan<LinearRgb>

The span to the source colors

destination Span<HunterLab>

The span to the destination colors

Convert(ReadOnlySpan<LinearRgb>, Span<Lms>)

Performs the bulk conversion from LinearRgb into Lms

public void Convert(ReadOnlySpan<LinearRgb> source, Span<Lms> destination)

Parameters

source ReadOnlySpan<LinearRgb>

The span to the source colors

destination Span<Lms>

The span to the destination colors

Convert(ReadOnlySpan<LinearRgb>, Span<Rgb>)

Performs the bulk conversion from LinearRgb into Rgb

public static void Convert(ReadOnlySpan<LinearRgb> source, Span<Rgb> destination)

Parameters

source ReadOnlySpan<LinearRgb>

The span to the source colors

destination Span<Rgb>

The span to the destination colors

Convert(ReadOnlySpan<LinearRgb>, Span<YCbCr>)

Performs the bulk conversion from LinearRgb into YCbCr.

public static void Convert(ReadOnlySpan<LinearRgb> source, Span<YCbCr> destination)

Parameters

source ReadOnlySpan<LinearRgb>

The span to the source colors

destination Span<YCbCr>

The span to the destination colors

Convert(ReadOnlySpan<Lms>, Span<CieLab>)

Performs the bulk conversion from Lms into CieLab.

public void Convert(ReadOnlySpan<Lms> source, Span<CieLab> destination)

Parameters

source ReadOnlySpan<Lms>

The span to the source colors

destination Span<CieLab>

The span to the destination colors

Convert(ReadOnlySpan<Lms>, Span<CieLchuv>)

Performs the bulk conversion from Lms into CieLchuv.

public void Convert(ReadOnlySpan<Lms> source, Span<CieLchuv> destination)

Parameters

source ReadOnlySpan<Lms>

The span to the source colors

destination Span<CieLchuv>

The span to the destination colors

Convert(ReadOnlySpan<Lms>, Span<CieLch>)

Performs the bulk conversion from Lms into CieLch.

public void Convert(ReadOnlySpan<Lms> source, Span<CieLch> destination)

Parameters

source ReadOnlySpan<Lms>

The span to the source colors

destination Span<CieLch>

The span to the destination colors

Convert(ReadOnlySpan<Lms>, Span<CieLuv>)

Performs the bulk conversion from Lms into CieLuv.

public void Convert(ReadOnlySpan<Lms> source, Span<CieLuv> destination)

Parameters

source ReadOnlySpan<Lms>

The span to the source colors

destination Span<CieLuv>

The span to the destination colors

Convert(ReadOnlySpan<Lms>, Span<CieXyy>)

Performs the bulk conversion from Lms into CieXyy

public void Convert(ReadOnlySpan<Lms> source, Span<CieXyy> destination)

Parameters

source ReadOnlySpan<Lms>

The span to the source colors

destination Span<CieXyy>

The span to the destination colors

Convert(ReadOnlySpan<Lms>, Span<CieXyz>)

Performs the bulk conversion from Lms into CieXyz.

public void Convert(ReadOnlySpan<Lms> source, Span<CieXyz> destination)

Parameters

source ReadOnlySpan<Lms>

The span to the source colors

destination Span<CieXyz>

The span to the destination colors

Convert(ReadOnlySpan<Lms>, Span<Cmyk>)

Performs the bulk conversion from Lms into Cmyk.

public void Convert(ReadOnlySpan<Lms> source, Span<Cmyk> destination)

Parameters

source ReadOnlySpan<Lms>

The span to the source colors,

destination Span<Cmyk>

The span to the destination colors

Convert(ReadOnlySpan<Lms>, Span<Hsl>)

Performs the bulk conversion from Lms into Hsl.

public void Convert(ReadOnlySpan<Lms> source, Span<Hsl> destination)

Parameters

source ReadOnlySpan<Lms>

The span to the source colors

destination Span<Hsl>

The span to the destination colors

Convert(ReadOnlySpan<Lms>, Span<Hsv>)

Performs the bulk conversion from Lms into Hsv

public void Convert(ReadOnlySpan<Lms> source, Span<Hsv> destination)

Parameters

source ReadOnlySpan<Lms>

The span to the source colors

destination Span<Hsv>

The span to the destination colors

Convert(ReadOnlySpan<Lms>, Span<HunterLab>)

Performs the bulk conversion from Lms into HunterLab.

public void Convert(ReadOnlySpan<Lms> source, Span<HunterLab> destination)

Parameters

source ReadOnlySpan<Lms>

The span to the source colors

destination Span<HunterLab>

The span to the destination colors

Convert(ReadOnlySpan<Lms>, Span<LinearRgb>)

Performs the bulk conversion from Lms into LinearRgb.

public void Convert(ReadOnlySpan<Lms> source, Span<LinearRgb> destination)

Parameters

source ReadOnlySpan<Lms>

The span to the source colors.

destination Span<LinearRgb>

The span to the destination colors.

Convert(ReadOnlySpan<Lms>, Span<Rgb>)

Performs the bulk conversion from Lms into Rgb

public void Convert(ReadOnlySpan<Lms> source, Span<Rgb> destination)

Parameters

source ReadOnlySpan<Lms>

The span to the source colors

destination Span<Rgb>

The span to the destination colors

Convert(ReadOnlySpan<Lms>, Span<YCbCr>)

Performs the bulk conversion from Lms into YCbCr.

public void Convert(ReadOnlySpan<Lms> source, Span<YCbCr> destination)

Parameters

source ReadOnlySpan<Lms>

The span to the source colors

destination Span<YCbCr>

The span to the destination colors

Convert(ReadOnlySpan<Rgb>, Span<CieLab>)

Performs the bulk conversion from LinearRgb into CieLab.

public void Convert(ReadOnlySpan<Rgb> source, Span<CieLab> destination)

Parameters

source ReadOnlySpan<Rgb>

The span to the source colors

destination Span<CieLab>

The span to the destination colors

Convert(ReadOnlySpan<Rgb>, Span<CieLchuv>)

Performs the bulk conversion from Rgb into CieLchuv.

public void Convert(ReadOnlySpan<Rgb> source, Span<CieLchuv> destination)

Parameters

source ReadOnlySpan<Rgb>

The span to the source colors

destination Span<CieLchuv>

The span to the destination colors

Convert(ReadOnlySpan<Rgb>, Span<CieLch>)

Performs the bulk conversion from Rgb into CieLch.

public void Convert(ReadOnlySpan<Rgb> source, Span<CieLch> destination)

Parameters

source ReadOnlySpan<Rgb>

The span to the source colors

destination Span<CieLch>

The span to the destination colors

Convert(ReadOnlySpan<Rgb>, Span<CieLuv>)

Performs the bulk conversion from Rgb into CieLuv.

public void Convert(ReadOnlySpan<Rgb> source, Span<CieLuv> destination)

Parameters

source ReadOnlySpan<Rgb>

The span to the source colors

destination Span<CieLuv>

The span to the destination colors

Convert(ReadOnlySpan<Rgb>, Span<CieXyy>)

Performs the bulk conversion from Rgb into CieXyy

public void Convert(ReadOnlySpan<Rgb> source, Span<CieXyy> destination)

Parameters

source ReadOnlySpan<Rgb>

The span to the source colors

destination Span<CieXyy>

The span to the destination colors

Convert(ReadOnlySpan<Rgb>, Span<CieXyz>)

Performs the bulk conversion from Rgb into CieXyz

public void Convert(ReadOnlySpan<Rgb> source, Span<CieXyz> destination)

Parameters

source ReadOnlySpan<Rgb>

The span to the source colors

destination Span<CieXyz>

The span to the destination colors

Convert(ReadOnlySpan<Rgb>, Span<Cmyk>)

Performs the bulk conversion from Rgb into Cmyk

public static void Convert(ReadOnlySpan<Rgb> source, Span<Cmyk> destination)

Parameters

source ReadOnlySpan<Rgb>

The span to the source colors

destination Span<Cmyk>

The span to the destination colors

Convert(ReadOnlySpan<Rgb>, Span<Hsl>)

Performs the bulk conversion from Rgb into Hsl.

public static void Convert(ReadOnlySpan<Rgb> source, Span<Hsl> destination)

Parameters

source ReadOnlySpan<Rgb>

The span to the source colors

destination Span<Hsl>

The span to the destination colors

Convert(ReadOnlySpan<Rgb>, Span<Hsv>)

Performs the bulk conversion from Rgb into Hsv

public static void Convert(ReadOnlySpan<Rgb> source, Span<Hsv> destination)

Parameters

source ReadOnlySpan<Rgb>

The span to the source colors

destination Span<Hsv>

The span to the destination colors

Convert(ReadOnlySpan<Rgb>, Span<HunterLab>)

Performs the bulk conversion from Rgb into HunterLab.

public void Convert(ReadOnlySpan<Rgb> source, Span<HunterLab> destination)

Parameters

source ReadOnlySpan<Rgb>

The span to the source colors

destination Span<HunterLab>

The span to the destination colors

Convert(ReadOnlySpan<Rgb>, Span<LinearRgb>)

Performs the bulk conversion from Rgb into LinearRgb.

public static void Convert(ReadOnlySpan<Rgb> source, Span<LinearRgb> destination)

Parameters

source ReadOnlySpan<Rgb>

The span to the source colors

destination Span<LinearRgb>

The span to the destination colors

Convert(ReadOnlySpan<Rgb>, Span<Lms>)

Performs the bulk conversion from Rgb into Lms

public void Convert(ReadOnlySpan<Rgb> source, Span<Lms> destination)

Parameters

source ReadOnlySpan<Rgb>

The span to the source colors

destination Span<Lms>

The span to the destination colors

Convert(ReadOnlySpan<Rgb>, Span<YCbCr>)

Performs the bulk conversion from Rgb into YCbCr.

public static void Convert(ReadOnlySpan<Rgb> source, Span<YCbCr> destination)

Parameters

source ReadOnlySpan<Rgb>

The span to the source colors

destination Span<YCbCr>

The span to the destination colors

Convert(ReadOnlySpan<YCbCr>, Span<CieLab>)

Performs the bulk conversion from YCbCr into CieLab.

public void Convert(ReadOnlySpan<YCbCr> source, Span<CieLab> destination)

Parameters

source ReadOnlySpan<YCbCr>

The span to the source colors

destination Span<CieLab>

The span to the destination colors

Convert(ReadOnlySpan<YCbCr>, Span<CieLchuv>)

Performs the bulk conversion from YCbCr into CieLchuv.

public void Convert(ReadOnlySpan<YCbCr> source, Span<CieLchuv> destination)

Parameters

source ReadOnlySpan<YCbCr>

The span to the source colors

destination Span<CieLchuv>

The span to the destination colors

Convert(ReadOnlySpan<YCbCr>, Span<CieLch>)

Performs the bulk conversion from YCbCr into CieLch.

public void Convert(ReadOnlySpan<YCbCr> source, Span<CieLch> destination)

Parameters

source ReadOnlySpan<YCbCr>

The span to the source colors

destination Span<CieLch>

The span to the destination colors

Convert(ReadOnlySpan<YCbCr>, Span<CieLuv>)

Performs the bulk conversion from YCbCr into CieLuv.

public void Convert(ReadOnlySpan<YCbCr> source, Span<CieLuv> destination)

Parameters

source ReadOnlySpan<YCbCr>

The span to the source colors.

destination Span<CieLuv>

The span to the destination colors.

Convert(ReadOnlySpan<YCbCr>, Span<CieXyy>)

Performs the bulk conversion from YCbCr into CieXyy

public void Convert(ReadOnlySpan<YCbCr> source, Span<CieXyy> destination)

Parameters

source ReadOnlySpan<YCbCr>

The span to the source colors

destination Span<CieXyy>

The span to the destination colors

Convert(ReadOnlySpan<YCbCr>, Span<CieXyz>)

Performs the bulk conversion from YCbCr into CieXyz

public void Convert(ReadOnlySpan<YCbCr> source, Span<CieXyz> destination)

Parameters

source ReadOnlySpan<YCbCr>

The span to the source colors

destination Span<CieXyz>

The span to the destination colors

Convert(ReadOnlySpan<YCbCr>, Span<Cmyk>)

Performs the bulk conversion from YCbCr into Cmyk.

public void Convert(ReadOnlySpan<YCbCr> source, Span<Cmyk> destination)

Parameters

source ReadOnlySpan<YCbCr>

The span to the source colors

destination Span<Cmyk>

The span to the destination colors

Convert(ReadOnlySpan<YCbCr>, Span<Hsl>)

Performs the bulk conversion from YCbCr into Hsl.

public void Convert(ReadOnlySpan<YCbCr> source, Span<Hsl> destination)

Parameters

source ReadOnlySpan<YCbCr>

The span to the source colors

destination Span<Hsl>

The span to the destination colors

Convert(ReadOnlySpan<YCbCr>, Span<Hsv>)

Performs the bulk conversion from YCbCr into Hsv

public void Convert(ReadOnlySpan<YCbCr> source, Span<Hsv> destination)

Parameters

source ReadOnlySpan<YCbCr>

The span to the source colors

destination Span<Hsv>

The span to the destination colors

Convert(ReadOnlySpan<YCbCr>, Span<HunterLab>)

Performs the bulk conversion from YCbCr into HunterLab.

public void Convert(ReadOnlySpan<YCbCr> source, Span<HunterLab> destination)

Parameters

source ReadOnlySpan<YCbCr>

The span to the source colors

destination Span<HunterLab>

The span to the destination colors

Convert(ReadOnlySpan<YCbCr>, Span<LinearRgb>)

Performs the bulk conversion from YCbCr into LinearRgb.

public void Convert(ReadOnlySpan<YCbCr> source, Span<LinearRgb> destination)

Parameters

source ReadOnlySpan<YCbCr>

The span to the source colors

destination Span<LinearRgb>

The span to the destination colors

Convert(ReadOnlySpan<YCbCr>, Span<Lms>)

Performs the bulk conversion from YCbCr into Lms

public void Convert(ReadOnlySpan<YCbCr> source, Span<Lms> destination)

Parameters

source ReadOnlySpan<YCbCr>

The span to the source colors

destination Span<Lms>

The span to the destination colors

Convert(ReadOnlySpan<YCbCr>, Span<Rgb>)

Performs the bulk conversion from YCbCr into Rgb

public void Convert(ReadOnlySpan<YCbCr> source, Span<Rgb> destination)

Parameters

source ReadOnlySpan<YCbCr>

The span to the source colors

destination Span<Rgb>

The span to the destination colors

ToCieLab(in CieLch)

Converts a CieLch into a CieLab.

public CieLab ToCieLab(in CieLch color)

Parameters

color CieLch

The color to convert.

Returns

CieLab

The CieLab

ToCieLab(in CieLchuv)

Converts a CieLchuv into a CieLab.

public CieLab ToCieLab(in CieLchuv color)

Parameters

color CieLchuv

The color to convert.

Returns

CieLab

The CieLab

ToCieLab(in CieLuv)

Converts a CieLuv into a CieLab.

public CieLab ToCieLab(in CieLuv color)

Parameters

color CieLuv

The color to convert.

Returns

CieLab

The CieLab

ToCieLab(in CieXyy)

Converts a CieXyy into a CieLab.

public CieLab ToCieLab(in CieXyy color)

Parameters

color CieXyy

The color to convert.

Returns

CieLab

The CieLab

ToCieLab(in CieXyz)

Converts a CieXyz into a CieLab

public CieLab ToCieLab(in CieXyz color)

Parameters

color CieXyz

The color to convert.

Returns

CieLab

The CieLab

ToCieLab(in Cmyk)

Converts a Cmyk into a CieLab

public CieLab ToCieLab(in Cmyk color)

Parameters

color Cmyk

The color to convert.

Returns

CieLab

The CieLab

ToCieLab(in Hsl)

Converts a Hsl into a CieLab.

public CieLab ToCieLab(in Hsl color)

Parameters

color Hsl

The color to convert.

Returns

CieLab

The CieLab

ToCieLab(in Hsv)

Converts a Hsv into a CieLab.

public CieLab ToCieLab(in Hsv color)

Parameters

color Hsv

The color to convert.

Returns

CieLab

The CieLab

ToCieLab(in HunterLab)

Converts a HunterLab into a CieLab.

public CieLab ToCieLab(in HunterLab color)

Parameters

color HunterLab

The color to convert.

Returns

CieLab

The CieLab

ToCieLab(in LinearRgb)

Converts a LinearRgb into a CieLab.

public CieLab ToCieLab(in LinearRgb color)

Parameters

color LinearRgb

The color to convert.

Returns

CieLab

The CieLab

ToCieLab(in Lms)

Converts a Lms into a CieLab.

public CieLab ToCieLab(in Lms color)

Parameters

color Lms

The color to convert.

Returns

CieLab

The CieLab

ToCieLab(in Rgb)

Converts a Rgb into a CieLab.

public CieLab ToCieLab(in Rgb color)

Parameters

color Rgb

The color to convert.

Returns

CieLab

The CieLab

ToCieLab(in YCbCr)

Converts a YCbCr into a CieLab

public CieLab ToCieLab(in YCbCr color)

Parameters

color YCbCr

The color to convert.

Returns

CieLab

The CieLab

ToCieLch(in CieLab)

Converts a CieLab into a CieLch

public CieLch ToCieLch(in CieLab color)

Parameters

color CieLab

The color to convert.

Returns

CieLch

The CieLch

ToCieLch(in CieLchuv)

Converts a CieLchuv into a CieLch.

public CieLch ToCieLch(in CieLchuv color)

Parameters

color CieLchuv

The color to convert.

Returns

CieLch

The CieLch

ToCieLch(in CieLuv)

Converts a CieLuv into a CieLch.

public CieLch ToCieLch(in CieLuv color)

Parameters

color CieLuv

The color to convert.

Returns

CieLch

The CieLch

ToCieLch(in CieXyy)

Converts a CieXyy into a CieLch.

public CieLch ToCieLch(in CieXyy color)

Parameters

color CieXyy

The color to convert.

Returns

CieLch

The CieLch

ToCieLch(in CieXyz)

Converts a CieXyz into a CieLch

public CieLch ToCieLch(in CieXyz color)

Parameters

color CieXyz

The color to convert.

Returns

CieLch

The CieLch

ToCieLch(in Cmyk)

Converts a Cmyk into a CieLch.

public CieLch ToCieLch(in Cmyk color)

Parameters

color Cmyk

The color to convert.

Returns

CieLch

The CieLch

ToCieLch(in Hsl)

Converts a Hsl into a CieLch.

public CieLch ToCieLch(in Hsl color)

Parameters

color Hsl

The color to convert.

Returns

CieLch

The CieLch

ToCieLch(in Hsv)

Converts a Hsv into a CieLch.

public CieLch ToCieLch(in Hsv color)

Parameters

color Hsv

The color to convert.

Returns

CieLch

The CieLch

ToCieLch(in HunterLab)

Converts a HunterLab into a CieLch.

public CieLch ToCieLch(in HunterLab color)

Parameters

color HunterLab

The color to convert.

Returns

CieLch

The CieLch

ToCieLch(in LinearRgb)

Converts a LinearRgb into a CieLch.

public CieLch ToCieLch(in LinearRgb color)

Parameters

color LinearRgb

The color to convert.

Returns

CieLch

The CieLch

ToCieLch(in Lms)

Converts a Lms into a CieLch.

public CieLch ToCieLch(in Lms color)

Parameters

color Lms

The color to convert.

Returns

CieLch

The CieLch

ToCieLch(in Rgb)

Converts a Rgb into a CieLch.

public CieLch ToCieLch(in Rgb color)

Parameters

color Rgb

The color to convert.

Returns

CieLch

The CieLch

ToCieLch(in YCbCr)

Converts a YCbCr into a CieLch.

public CieLch ToCieLch(in YCbCr color)

Parameters

color YCbCr

The color to convert.

Returns

CieLch

The CieLch

ToCieLchuv(in CieLab)

Converts a CieLab into a CieLchuv

public CieLchuv ToCieLchuv(in CieLab color)

Parameters

color CieLab

The color to convert.

Returns

CieLchuv

The CieLchuv

ToCieLchuv(in CieLch)

Converts a CieLch into a CieLchuv.

public CieLchuv ToCieLchuv(in CieLch color)

Parameters

color CieLch

The color to convert.

Returns

CieLchuv

The CieLchuv

ToCieLchuv(in CieLuv)

Converts a CieLuv into a CieLchuv.

public CieLchuv ToCieLchuv(in CieLuv color)

Parameters

color CieLuv

The color to convert.

Returns

CieLchuv

The CieLchuv

ToCieLchuv(in CieXyy)

Converts a CieXyy into a CieLchuv.

public CieLchuv ToCieLchuv(in CieXyy color)

Parameters

color CieXyy

The color to convert.

Returns

CieLchuv

The CieLchuv

ToCieLchuv(in CieXyz)

Converts a CieXyz into a CieLchuv.

public CieLchuv ToCieLchuv(in CieXyz color)

Parameters

color CieXyz

The color to convert.

Returns

CieLchuv

The CieLchuv

ToCieLchuv(in Cmyk)

Converts a Cmyk into a CieLchuv.

public CieLchuv ToCieLchuv(in Cmyk color)

Parameters

color Cmyk

The color to convert.

Returns

CieLchuv

The CieLchuv

ToCieLchuv(in Hsl)

Converts a Hsl into a CieLchuv.

public CieLchuv ToCieLchuv(in Hsl color)

Parameters

color Hsl

The color to convert.

Returns

CieLchuv

The CieLchuv

ToCieLchuv(in Hsv)

Converts a Hsv into a CieLchuv.

public CieLchuv ToCieLchuv(in Hsv color)

Parameters

color Hsv

The color to convert.

Returns

CieLchuv

The CieLchuv

ToCieLchuv(in HunterLab)

Converts a HunterLab into a CieLchuv.

public CieLchuv ToCieLchuv(in HunterLab color)

Parameters

color HunterLab

The color to convert.

Returns

CieLchuv

The CieLchuv

ToCieLchuv(in LinearRgb)

Converts a LinearRgb into a CieLchuv.

public CieLchuv ToCieLchuv(in LinearRgb color)

Parameters

color LinearRgb

The color to convert.

Returns

CieLchuv

The CieLchuv

ToCieLchuv(in Lms)

Converts a Lms into a CieLchuv.

public CieLchuv ToCieLchuv(in Lms color)

Parameters

color Lms

The color to convert.

Returns

CieLchuv

The CieLchuv

ToCieLchuv(in Rgb)

Converts a Rgb into a CieLchuv.

public CieLchuv ToCieLchuv(in Rgb color)

Parameters

color Rgb

The color to convert.

Returns

CieLchuv

The CieLchuv

ToCieLchuv(in YCbCr)

Converts a YCbCr into a CieLchuv.

public CieLchuv ToCieLchuv(in YCbCr color)

Parameters

color YCbCr

The color to convert.

Returns

CieLchuv

The CieLchuv

ToCieLuv(in CieLab)

Converts a CieLab into a CieLuv.

public CieLuv ToCieLuv(in CieLab color)

Parameters

color CieLab

The color to convert.

Returns

CieLuv

The CieLuv

ToCieLuv(in CieLch)

Converts a CieLch into a CieLuv.

public CieLuv ToCieLuv(in CieLch color)

Parameters

color CieLch

The color to convert.

Returns

CieLuv

The CieLuv

ToCieLuv(in CieLchuv)

Converts a CieLchuv into a CieLuv.

public CieLuv ToCieLuv(in CieLchuv color)

Parameters

color CieLchuv

The color to convert.

Returns

CieLuv

The CieLab

ToCieLuv(in CieXyy)

Converts a CieXyy into a CieLuv.

public CieLuv ToCieLuv(in CieXyy color)

Parameters

color CieXyy

The color to convert.

Returns

CieLuv

The CieLuv

ToCieLuv(in CieXyz)

Converts a CieXyz into a CieLuv.

public CieLuv ToCieLuv(in CieXyz color)

Parameters

color CieXyz

The color to convert.

Returns

CieLuv

The CieLuv

ToCieLuv(in Cmyk)

Converts a Cmyk into a CieLuv.

public CieLuv ToCieLuv(in Cmyk color)

Parameters

color Cmyk

The color to convert.

Returns

CieLuv

The CieLuv

ToCieLuv(in Hsl)

Converts a Hsl into a CieLuv

public CieLuv ToCieLuv(in Hsl color)

Parameters

color Hsl

The color to convert.

Returns

CieLuv

The CieLuv

ToCieLuv(in Hsv)

Converts a Hsv into a CieLuv.

public CieLuv ToCieLuv(in Hsv color)

Parameters

color Hsv

The color to convert.

Returns

CieLuv

The CieLuv

ToCieLuv(in HunterLab)

Converts a HunterLab into a CieLuv.

public CieLuv ToCieLuv(in HunterLab color)

Parameters

color HunterLab

The color to convert.

Returns

CieLuv

The CieLuv

ToCieLuv(in LinearRgb)

Converts a LinearRgb into a CieLuv.

public CieLuv ToCieLuv(in LinearRgb color)

Parameters

color LinearRgb

The color to convert.

Returns

CieLuv

The CieLuv

ToCieLuv(in Lms)

Converts a Lms into a CieLuv.

public CieLuv ToCieLuv(in Lms color)

Parameters

color Lms

The color to convert.

Returns

CieLuv

The CieLuv

ToCieLuv(in Rgb)

Converts a Rgb into a CieLuv.

public CieLuv ToCieLuv(in Rgb color)

Parameters

color Rgb

The color to convert.

Returns

CieLuv

The CieLuv

ToCieLuv(in YCbCr)

Converts a YCbCr into a CieLuv.

public CieLuv ToCieLuv(in YCbCr color)

Parameters

color YCbCr

The color to convert.

Returns

CieLuv

The CieLuv

ToCieXyy(in CieLab)

Converts a CieLab into a CieXyy

public CieXyy ToCieXyy(in CieLab color)

Parameters

color CieLab

The color to convert.

Returns

CieXyy

The CieXyy

ToCieXyy(in CieLch)

Converts a CieLch into a CieXyy

public CieXyy ToCieXyy(in CieLch color)

Parameters

color CieLch

The color to convert.

Returns

CieXyy

The CieXyy

ToCieXyy(in CieLchuv)

Converts a CieLchuv into a CieXyy

public CieXyy ToCieXyy(in CieLchuv color)

Parameters

color CieLchuv

The color to convert.

Returns

CieXyy

The CieXyy

ToCieXyy(in CieLuv)

Converts a CieLuv into a CieXyy

public CieXyy ToCieXyy(in CieLuv color)

Parameters

color CieLuv

The color to convert.

Returns

CieXyy

The CieXyy

ToCieXyy(in CieXyz)

Converts a CieXyz into a CieXyy

public static CieXyy ToCieXyy(in CieXyz color)

Parameters

color CieXyz

The color to convert.

Returns

CieXyy

The CieXyy

ToCieXyy(in Cmyk)

Converts a Cmyk into a CieXyy

public CieXyy ToCieXyy(in Cmyk color)

Parameters

color Cmyk

The color to convert.

Returns

CieXyy

The CieXyy

ToCieXyy(Hsl)

Converts a Hsl into a CieXyy

public CieXyy ToCieXyy(Hsl color)

Parameters

color Hsl

The color to convert.

Returns

CieXyy

The CieXyy

ToCieXyy(in Hsv)

Converts a Hsv into a CieXyy

public CieXyy ToCieXyy(in Hsv color)

Parameters

color Hsv

The color to convert.

Returns

CieXyy

The CieXyy

ToCieXyy(in HunterLab)

Converts a HunterLab into a CieXyy

public CieXyy ToCieXyy(in HunterLab color)

Parameters

color HunterLab

The color to convert.

Returns

CieXyy

The CieXyy

ToCieXyy(in LinearRgb)

Converts a LinearRgb into a CieXyy

public CieXyy ToCieXyy(in LinearRgb color)

Parameters

color LinearRgb

The color to convert.

Returns

CieXyy

The CieXyy

ToCieXyy(in Lms)

Converts a Lms into a CieXyy

public CieXyy ToCieXyy(in Lms color)

Parameters

color Lms

The color to convert.

Returns

CieXyy

The CieXyy

ToCieXyy(in Rgb)

Converts a Rgb into a CieXyy

public CieXyy ToCieXyy(in Rgb color)

Parameters

color Rgb

The color to convert.

Returns

CieXyy

The CieXyy

ToCieXyy(in YCbCr)

Converts a YCbCr into a CieXyy

public CieXyy ToCieXyy(in YCbCr color)

Parameters

color YCbCr

The color to convert.

Returns

CieXyy

The CieXyy

ToCieXyz(in CieLab)

Converts a CieLab into a CieXyz.

public CieXyz ToCieXyz(in CieLab color)

Parameters

color CieLab

The color to convert.

Returns

CieXyz

The CieXyz

ToCieXyz(in CieLch)

Converts a CieLch into a CieXyz.

public CieXyz ToCieXyz(in CieLch color)

Parameters

color CieLch

The color to convert.

Returns

CieXyz

The CieXyz

ToCieXyz(in CieLchuv)

Converts a CieLuv into a CieXyz.

public CieXyz ToCieXyz(in CieLchuv color)

Parameters

color CieLchuv

The color to convert.

Returns

CieXyz

The CieXyz

ToCieXyz(in CieLuv)

Converts a CieLuv into a CieXyz

public CieXyz ToCieXyz(in CieLuv color)

Parameters

color CieLuv

The color to convert.

Returns

CieXyz

The CieXyz

ToCieXyz(in CieXyy)

Converts a CieXyy into a CieXyz.

public static CieXyz ToCieXyz(in CieXyy color)

Parameters

color CieXyy

The color to convert.

Returns

CieXyz

The CieXyz

ToCieXyz(in Cmyk)

Converts a Cmyk into a CieXyz.

public CieXyz ToCieXyz(in Cmyk color)

Parameters

color Cmyk

The color to convert.

Returns

CieXyz

The CieXyz

ToCieXyz(in Hsl)

Converts a Hsl into a CieXyz.

public CieXyz ToCieXyz(in Hsl color)

Parameters

color Hsl

The color to convert.

Returns

CieXyz

The CieXyz

ToCieXyz(in Hsv)

Converts a Hsv into a CieXyz.

public CieXyz ToCieXyz(in Hsv color)

Parameters

color Hsv

The color to convert.

Returns

CieXyz

The CieXyz

ToCieXyz(in HunterLab)

Converts a HunterLab into a CieXyz.

public CieXyz ToCieXyz(in HunterLab color)

Parameters

color HunterLab

The color to convert.

Returns

CieXyz

The CieXyz

ToCieXyz(in LinearRgb)

Converts a LinearRgb into a CieXyz.

public CieXyz ToCieXyz(in LinearRgb color)

Parameters

color LinearRgb

The color to convert.

Returns

CieXyz

The CieXyz

ToCieXyz(in Lms)

Converts a Lms into a CieXyz.

public CieXyz ToCieXyz(in Lms color)

Parameters

color Lms

The color to convert.

Returns

CieXyz

The CieXyz

ToCieXyz(in Rgb)

Converts a Rgb into a CieXyz

public CieXyz ToCieXyz(in Rgb color)

Parameters

color Rgb

The color to convert.

Returns

CieXyz

The CieXyz

ToCieXyz(in YCbCr)

Converts a YCbCr into a CieXyz

public CieXyz ToCieXyz(in YCbCr color)

Parameters

color YCbCr

The color to convert.

Returns

CieXyz

The CieXyz

ToCmyk(in CieLab)

Converts a CieLab into a Cmyk.

public Cmyk ToCmyk(in CieLab color)

Parameters

color CieLab

The color to convert.

Returns

Cmyk

The Cmyk

ToCmyk(in CieLch)

Converts a CieLch into a Cmyk.

public Cmyk ToCmyk(in CieLch color)

Parameters

color CieLch

The color to convert.

Returns

Cmyk

The Cmyk

ToCmyk(in CieLchuv)

Converts a CieLchuv into a Cmyk

public Cmyk ToCmyk(in CieLchuv color)

Parameters

color CieLchuv

The color to convert.

Returns

Cmyk

The Cmyk

ToCmyk(in CieLuv)

Converts a CieLuv into a Cmyk

public Cmyk ToCmyk(in CieLuv color)

Parameters

color CieLuv

The color to convert.

Returns

Cmyk

The Cmyk

ToCmyk(in CieXyy)

Converts a CieXyy into a Cmyk.

public Cmyk ToCmyk(in CieXyy color)

Parameters

color CieXyy

The color to convert.

Returns

Cmyk

The Cmyk

ToCmyk(in CieXyz)

Converts a CieXyz into a Cmyk.

public Cmyk ToCmyk(in CieXyz color)

Parameters

color CieXyz

The color to convert.

Returns

Cmyk

The Cmyk

ToCmyk(in Hsl)

Converts a Hsl into a Cmyk.

public static Cmyk ToCmyk(in Hsl color)

Parameters

color Hsl

The color to convert.

Returns

Cmyk

The Cmyk

ToCmyk(in Hsv)

Converts a Hsv into a Cmyk.

public static Cmyk ToCmyk(in Hsv color)

Parameters

color Hsv

The color to convert.

Returns

Cmyk

The Cmyk

ToCmyk(in HunterLab)

Converts a HunterLab into a Cmyk.

public Cmyk ToCmyk(in HunterLab color)

Parameters

color HunterLab

The color to convert.

Returns

Cmyk

The Cmyk

ToCmyk(in LinearRgb)

Converts a LinearRgb into a Cmyk.

public static Cmyk ToCmyk(in LinearRgb color)

Parameters

color LinearRgb

The color to convert.

Returns

Cmyk

The Cmyk

ToCmyk(in Lms)

Converts a Lms into a Cmyk.

public Cmyk ToCmyk(in Lms color)

Parameters

color Lms

The color to convert.

Returns

Cmyk

The Cmyk

ToCmyk(in Rgb)

Converts a Rgb into a Cmyk.

public static Cmyk ToCmyk(in Rgb color)

Parameters

color Rgb

The color to convert.

Returns

Cmyk

The Cmyk

ToCmyk(in YCbCr)

Converts a YCbCr into a Cmyk.

public Cmyk ToCmyk(in YCbCr color)

Parameters

color YCbCr

The color to convert.

Returns

Cmyk

The Cmyk

ToHsl(in CieLab)

Converts a CieLab into a Hsl.

public Hsl ToHsl(in CieLab color)

Parameters

color CieLab

The color to convert.

Returns

Hsl

The Hsl

ToHsl(in CieLch)

Converts a CieLch into a Hsl.

public Hsl ToHsl(in CieLch color)

Parameters

color CieLch

The color to convert.

Returns

Hsl

The Hsl

ToHsl(in CieLchuv)

Converts a CieLchuv into a Hsl.

public Hsl ToHsl(in CieLchuv color)

Parameters

color CieLchuv

The color to convert.

Returns

Hsl

The Hsl

ToHsl(in CieLuv)

Converts a CieLuv into a Hsl.

public Hsl ToHsl(in CieLuv color)

Parameters

color CieLuv

The color to convert.

Returns

Hsl

The Hsl

ToHsl(in CieXyy)

Converts a CieXyy into a Hsl.

public Hsl ToHsl(in CieXyy color)

Parameters

color CieXyy

The color to convert.

Returns

Hsl

The Hsl

ToHsl(in CieXyz)

Converts a CieXyz into a Hsl

public Hsl ToHsl(in CieXyz color)

Parameters

color CieXyz

The color to convert.

Returns

Hsl

The Hsl

ToHsl(in Cmyk)

Converts a Cmyk into a Hsl

public static Hsl ToHsl(in Cmyk color)

Parameters

color Cmyk

The color to convert.

Returns

Hsl

The Hsl

ToHsl(in Hsv)

Converts a Hsv into a Hsl

public static Hsl ToHsl(in Hsv color)

Parameters

color Hsv

The color to convert.

Returns

Hsl

The Hsl

ToHsl(in HunterLab)

Converts a HunterLab into a Hsl.

public Hsl ToHsl(in HunterLab color)

Parameters

color HunterLab

The color to convert.

Returns

Hsl

The Hsl

ToHsl(in LinearRgb)

Converts a LinearRgb into a Hsl.

public static Hsl ToHsl(in LinearRgb color)

Parameters

color LinearRgb

The color to convert.

Returns

Hsl

The Hsl

ToHsl(Lms)

Converts a Lms into a Hsl.

public Hsl ToHsl(Lms color)

Parameters

color Lms

The color to convert.

Returns

Hsl

The Hsl

ToHsl(in Rgb)

Converts a Rgb into a Hsl

public static Hsl ToHsl(in Rgb color)

Parameters

color Rgb

The color to convert.

Returns

Hsl

The Hsl

ToHsl(in YCbCr)

Converts a YCbCr into a Hsl.

public Hsl ToHsl(in YCbCr color)

Parameters

color YCbCr

The color to convert.

Returns

Hsl

The Hsl

ToHsv(in CieLab)

Converts a CieLab into a Hsv

public Hsv ToHsv(in CieLab color)

Parameters

color CieLab

The color to convert.

Returns

Hsv

The Hsv

ToHsv(in CieLch)

Converts a CieLch into a Hsv

public Hsv ToHsv(in CieLch color)

Parameters

color CieLch

The color to convert.

Returns

Hsv

The Hsv

ToHsv(in CieLchuv)

Converts a CieLchuv into a Hsv

public Hsv ToHsv(in CieLchuv color)

Parameters

color CieLchuv

The color to convert.

Returns

Hsv

The Hsv

ToHsv(in CieLuv)

Converts a CieLuv into a Hsv

public Hsv ToHsv(in CieLuv color)

Parameters

color CieLuv

The color to convert.

Returns

Hsv

The Hsv

ToHsv(in CieXyy)

Converts a CieXyy into a Hsv

public Hsv ToHsv(in CieXyy color)

Parameters

color CieXyy

The color to convert.

Returns

Hsv

The Hsv

ToHsv(in CieXyz)

Converts a CieXyz into a Hsv

public Hsv ToHsv(in CieXyz color)

Parameters

color CieXyz

The color to convert.

Returns

Hsv

The Hsv

ToHsv(in Cmyk)

Converts a Cmyk into a Hsv

public static Hsv ToHsv(in Cmyk color)

Parameters

color Cmyk

The color to convert.

Returns

Hsv

The Hsv

ToHsv(in Hsl)

Converts a Hsl into a Hsv

public static Hsv ToHsv(in Hsl color)

Parameters

color Hsl

The color to convert.

Returns

Hsv

The Hsv

ToHsv(in HunterLab)

Converts a HunterLab into a Hsv

public Hsv ToHsv(in HunterLab color)

Parameters

color HunterLab

The color to convert.

Returns

Hsv

The Hsv

ToHsv(in LinearRgb)

Converts a LinearRgb into a Hsv

public static Hsv ToHsv(in LinearRgb color)

Parameters

color LinearRgb

The color to convert.

Returns

Hsv

The Hsv

ToHsv(Lms)

Converts a Lms into a Hsv

public Hsv ToHsv(Lms color)

Parameters

color Lms

The color to convert.

Returns

Hsv

The Hsv

ToHsv(in Rgb)

Converts a Rgb into a Hsv

public static Hsv ToHsv(in Rgb color)

Parameters

color Rgb

The color to convert.

Returns

Hsv

The Hsv

ToHsv(in YCbCr)

Converts a YCbCr into a Hsv

public Hsv ToHsv(in YCbCr color)

Parameters

color YCbCr

The color to convert.

Returns

Hsv

The Hsv

ToHunterLab(in CieLab)

Converts a CieLab into a HunterLab.

public HunterLab ToHunterLab(in CieLab color)

Parameters

color CieLab

The color to convert.

Returns

HunterLab

The HunterLab

ToHunterLab(in CieLch)

Converts a CieLch into a HunterLab.

public HunterLab ToHunterLab(in CieLch color)

Parameters

color CieLch

The color to convert.

Returns

HunterLab

The HunterLab

ToHunterLab(in CieLchuv)

Converts a CieLchuv into a HunterLab.

public HunterLab ToHunterLab(in CieLchuv color)

Parameters

color CieLchuv

The color to convert.

Returns

HunterLab

The HunterLab

ToHunterLab(in CieLuv)

Converts a CieLuv into a HunterLab.

public HunterLab ToHunterLab(in CieLuv color)

Parameters

color CieLuv

The color to convert.

Returns

HunterLab

The HunterLab

ToHunterLab(in CieXyy)

Converts a CieXyy into a HunterLab.

public HunterLab ToHunterLab(in CieXyy color)

Parameters

color CieXyy

The color to convert.

Returns

HunterLab

The HunterLab

ToHunterLab(in CieXyz)

Converts a CieXyz into a HunterLab.

public HunterLab ToHunterLab(in CieXyz color)

Parameters

color CieXyz

The color to convert.

Returns

HunterLab

The HunterLab

ToHunterLab(in Cmyk)

Converts a Cmyk into a HunterLab.

public HunterLab ToHunterLab(in Cmyk color)

Parameters

color Cmyk

The color to convert.

Returns

HunterLab

The HunterLab

ToHunterLab(in Hsl)

Converts a Hsl into a HunterLab.

public HunterLab ToHunterLab(in Hsl color)

Parameters

color Hsl

The color to convert.

Returns

HunterLab

The HunterLab

ToHunterLab(in Hsv)

Converts a Hsv into a HunterLab.

public HunterLab ToHunterLab(in Hsv color)

Parameters

color Hsv

The color to convert.

Returns

HunterLab

The HunterLab

ToHunterLab(in LinearRgb)

Converts a LinearRgb into a HunterLab.

public HunterLab ToHunterLab(in LinearRgb color)

Parameters

color LinearRgb

The color to convert.

Returns

HunterLab

The HunterLab

ToHunterLab(in Lms)

Converts a Lms into a HunterLab.

public HunterLab ToHunterLab(in Lms color)

Parameters

color Lms

The color to convert.

Returns

HunterLab

The HunterLab

ToHunterLab(in Rgb)

Converts a Rgb into a HunterLab

public HunterLab ToHunterLab(in Rgb color)

Parameters

color Rgb

The color to convert.

Returns

HunterLab

The HunterLab

ToHunterLab(in YCbCr)

Converts a YCbCr into a HunterLab.

public HunterLab ToHunterLab(in YCbCr color)

Parameters

color YCbCr

The color to convert.

Returns

HunterLab

The HunterLab

ToLinearRgb(in CieLab)

Converts a CieLab into a LinearRgb.

public LinearRgb ToLinearRgb(in CieLab color)

Parameters

color CieLab

The color to convert.

Returns

LinearRgb

The LinearRgb

ToLinearRgb(in CieLch)

Converts a CieLch into a LinearRgb.

public LinearRgb ToLinearRgb(in CieLch color)

Parameters

color CieLch

The color to convert.

Returns

LinearRgb

The LinearRgb

ToLinearRgb(in CieLchuv)

Converts a CieLchuv into a LinearRgb.

public LinearRgb ToLinearRgb(in CieLchuv color)

Parameters

color CieLchuv

The color to convert.

Returns

LinearRgb

The LinearRgb

ToLinearRgb(in CieLuv)

Converts a CieLuv into a LinearRgb.

public LinearRgb ToLinearRgb(in CieLuv color)

Parameters

color CieLuv

The color to convert.

Returns

LinearRgb

The LinearRgb

ToLinearRgb(in CieXyy)

Converts a CieXyy into a LinearRgb

public LinearRgb ToLinearRgb(in CieXyy color)

Parameters

color CieXyy

The color to convert.

Returns

LinearRgb

The LinearRgb

ToLinearRgb(in CieXyz)

Converts a CieXyz into a LinearRgb.

public LinearRgb ToLinearRgb(in CieXyz color)

Parameters

color CieXyz

The color to convert.

Returns

LinearRgb

The LinearRgb

ToLinearRgb(in Cmyk)

Converts a Cmyk into a LinearRgb.

public static LinearRgb ToLinearRgb(in Cmyk color)

Parameters

color Cmyk

The color to convert.

Returns

LinearRgb

The LinearRgb

ToLinearRgb(in Hsl)

Converts a Hsl into a LinearRgb.

public static LinearRgb ToLinearRgb(in Hsl color)

Parameters

color Hsl

The color to convert.

Returns

LinearRgb

The LinearRgb

ToLinearRgb(in Hsv)

Converts a Hsv into a LinearRgb.

public static LinearRgb ToLinearRgb(in Hsv color)

Parameters

color Hsv

The color to convert.

Returns

LinearRgb

The LinearRgb

ToLinearRgb(in HunterLab)

Converts a HunterLab into a LinearRgb.

public LinearRgb ToLinearRgb(in HunterLab color)

Parameters

color HunterLab

The color to convert.

Returns

LinearRgb

The LinearRgb

ToLinearRgb(in Lms)

Converts a Lms into a LinearRgb.

public LinearRgb ToLinearRgb(in Lms color)

Parameters

color Lms

The color to convert.

Returns

LinearRgb

The LinearRgb

ToLinearRgb(in Rgb)

Converts a Rgb into a LinearRgb

public static LinearRgb ToLinearRgb(in Rgb color)

Parameters

color Rgb

The color to convert.

Returns

LinearRgb

The LinearRgb

ToLinearRgb(in YCbCr)

Converts a YCbCr into a LinearRgb.

public LinearRgb ToLinearRgb(in YCbCr color)

Parameters

color YCbCr

The color to convert.

Returns

LinearRgb

The LinearRgb

ToLms(in CieLab)

Converts a CieLab into a Lms

public Lms ToLms(in CieLab color)

Parameters

color CieLab

The color to convert.

Returns

Lms

The Lms

ToLms(in CieLch)

Converts a CieLch into a Lms

public Lms ToLms(in CieLch color)

Parameters

color CieLch

The color to convert.

Returns

Lms

The Lms

ToLms(in CieLchuv)

Converts a CieLchuv into a Lms

public Lms ToLms(in CieLchuv color)

Parameters

color CieLchuv

The color to convert.

Returns

Lms

The Lms

ToLms(in CieLuv)

Converts a CieLuv into a Lms

public Lms ToLms(in CieLuv color)

Parameters

color CieLuv

The color to convert.

Returns

Lms

The Lms

ToLms(in CieXyy)

Converts a CieXyy into a Lms

public Lms ToLms(in CieXyy color)

Parameters

color CieXyy

The color to convert.

Returns

Lms

The Lms

ToLms(in CieXyz)

Converts a CieXyz into a Lms

public Lms ToLms(in CieXyz color)

Parameters

color CieXyz

The color to convert.

Returns

Lms

The Lms

ToLms(in Cmyk)

Converts a Cmyk into a Lms

public Lms ToLms(in Cmyk color)

Parameters

color Cmyk

The color to convert.

Returns

Lms

The Lms

ToLms(in Hsl)

Converts a Hsl into a Lms

public Lms ToLms(in Hsl color)

Parameters

color Hsl

The color to convert.

Returns

Lms

The Lms

ToLms(in Hsv)

Converts a Hsv into a Lms

public Lms ToLms(in Hsv color)

Parameters

color Hsv

The color to convert.

Returns

Lms

The Lms

ToLms(in HunterLab)

Converts a HunterLab into a Lms

public Lms ToLms(in HunterLab color)

Parameters

color HunterLab

The color to convert.

Returns

Lms

The Lms

ToLms(in LinearRgb)

Converts a LinearRgb into a Lms

public Lms ToLms(in LinearRgb color)

Parameters

color LinearRgb

The color to convert.

Returns

Lms

The Lms

ToLms(in Rgb)

Converts a Rgb into a Lms

public Lms ToLms(in Rgb color)

Parameters

color Rgb

The color to convert.

Returns

Lms

The Lms

ToLms(in YCbCr)

Converts a YCbCr into a Lms

public Lms ToLms(in YCbCr color)

Parameters

color YCbCr

The color to convert.

Returns

Lms

The Lms

ToRgb(in CieLab)

Converts a CieLab into a Rgb

public Rgb ToRgb(in CieLab color)

Parameters

color CieLab

The color to convert.

Returns

Rgb

The Rgb

ToRgb(in CieLch)

Converts a CieLch into a Rgb

public Rgb ToRgb(in CieLch color)

Parameters

color CieLch

The color to convert.

Returns

Rgb

The Rgb

ToRgb(in CieLchuv)

Converts a CieLchuv into a Rgb

public Rgb ToRgb(in CieLchuv color)

Parameters

color CieLchuv

The color to convert.

Returns

Rgb

The Rgb

ToRgb(in CieLuv)

Converts a CieLuv into a Rgb

public Rgb ToRgb(in CieLuv color)

Parameters

color CieLuv

The color to convert.

Returns

Rgb

The Rgb

ToRgb(in CieXyy)

Converts a CieXyy into a Rgb

public Rgb ToRgb(in CieXyy color)

Parameters

color CieXyy

The color to convert.

Returns

Rgb

The Rgb

ToRgb(in CieXyz)

Converts a CieXyz into a Rgb

public Rgb ToRgb(in CieXyz color)

Parameters

color CieXyz

The color to convert.

Returns

Rgb

The Rgb

ToRgb(in Cmyk)

Converts a Cmyk into a Rgb

public static Rgb ToRgb(in Cmyk color)

Parameters

color Cmyk

The color to convert.

Returns

Rgb

The Rgb

ToRgb(in Hsl)

Converts a Hsl into a Rgb

public static Rgb ToRgb(in Hsl color)

Parameters

color Hsl

The color to convert.

Returns

Rgb

The Rgb

ToRgb(in Hsv)

Converts a Hsv into a Rgb

public static Rgb ToRgb(in Hsv color)

Parameters

color Hsv

The color to convert.

Returns

Rgb

The Rgb

ToRgb(in HunterLab)

Converts a HunterLab into a Rgb

public Rgb ToRgb(in HunterLab color)

Parameters

color HunterLab

The color to convert.

Returns

Rgb

The Rgb

ToRgb(in LinearRgb)

Converts a LinearRgb into a Rgb

public static Rgb ToRgb(in LinearRgb color)

Parameters

color LinearRgb

The color to convert.

Returns

Rgb

The Rgb

ToRgb(in Lms)

Converts a Lms into a Rgb

public Rgb ToRgb(in Lms color)

Parameters

color Lms

The color to convert.

Returns

Rgb

The Rgb

ToRgb(in YCbCr)

Converts a YCbCr into a Rgb

public Rgb ToRgb(in YCbCr color)

Parameters

color YCbCr

The color to convert.

Returns

Rgb

The Rgb

ToYCbCr(in CieLab)

Converts a CieLab into a YCbCr.

public YCbCr ToYCbCr(in CieLab color)

Parameters

color CieLab

The color to convert.

Returns

YCbCr

The YCbCr

ToYCbCr(in CieLch)

Converts a CieLch into a YCbCr.

public YCbCr ToYCbCr(in CieLch color)

Parameters

color CieLch

The color to convert.

Returns

YCbCr

The YCbCr

ToYCbCr(in CieLuv)

Converts a CieLuv into a YCbCr.

public YCbCr ToYCbCr(in CieLuv color)

Parameters

color CieLuv

The color to convert.

Returns

YCbCr

The YCbCr

ToYCbCr(in CieXyy)

Converts a CieXyy into a YCbCr.

public YCbCr ToYCbCr(in CieXyy color)

Parameters

color CieXyy

The color to convert.

Returns

YCbCr

The YCbCr

ToYCbCr(in CieXyz)

Converts a CieXyz into a YCbCr.

public YCbCr ToYCbCr(in CieXyz color)

Parameters

color CieXyz

The color to convert.

Returns

YCbCr

The YCbCr

ToYCbCr(in Cmyk)

Converts a Cmyk into a YCbCr.

public static YCbCr ToYCbCr(in Cmyk color)

Parameters

color Cmyk

The color to convert.

Returns

YCbCr

The YCbCr

ToYCbCr(in Hsl)

Converts a Hsl into a YCbCr.

public static YCbCr ToYCbCr(in Hsl color)

Parameters

color Hsl

The color to convert.

Returns

YCbCr

The YCbCr

ToYCbCr(in Hsv)

Converts a Hsv into a YCbCr.

public static YCbCr ToYCbCr(in Hsv color)

Parameters

color Hsv

The color to convert.

Returns

YCbCr

The YCbCr

ToYCbCr(in HunterLab)

Converts a HunterLab into a YCbCr.

public YCbCr ToYCbCr(in HunterLab color)

Parameters

color HunterLab

The color to convert.

Returns

YCbCr

The YCbCr

ToYCbCr(in LinearRgb)

Converts a LinearRgb into a YCbCr.

public static YCbCr ToYCbCr(in LinearRgb color)

Parameters

color LinearRgb

The color to convert.

Returns

YCbCr

The YCbCr

ToYCbCr(in Lms)

Converts a Lms into a YCbCr.

public YCbCr ToYCbCr(in Lms color)

Parameters

color Lms

The color to convert.

Returns

YCbCr

The YCbCr

ToYCbCr(in Rgb)

Converts a Rgb into a YCbCr.

public static YCbCr ToYCbCr(in Rgb color)

Parameters

color Rgb

The color to convert.

Returns

YCbCr

The YCbCr