Class ColorSpaceConverter
Provides methods to allow the conversion of color values between different color spaces.
Inherited Members
Namespace: SixLabors.ImageSharp.ColorSpaces.Conversion
Assembly: SixLabors.ImageSharp.dll
Syntax
public class ColorSpaceConverter
Constructors
| Edit this page View SourceColorSpaceConverter()
Initializes a new instance of the ColorSpaceConverter class.
Declaration
public ColorSpaceConverter()
ColorSpaceConverter(ColorSpaceConverterOptions)
Initializes a new instance of the ColorSpaceConverter class.
Declaration
public ColorSpaceConverter(ColorSpaceConverterOptions options)
Parameters
Type | Name | Description |
---|---|---|
ColorSpaceConverterOptions | options | The configuration options. |
Methods
| Edit this page View SourceAdapt(in CieLab)
Adapts CieLab color from the source white point to white point set in TargetLabWhitePoint.
Declaration
public CieLab Adapt(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to adapt |
Returns
Type | Description |
---|---|
CieLab | The adapted color |
Adapt(in CieLch)
Adapts CieLch color from the source white point to white point set in TargetLabWhitePoint.
Declaration
public CieLch Adapt(in CieLch color)
Parameters
Type | Name | Description |
---|---|---|
CieLch | color | The color to adapt |
Returns
Type | Description |
---|---|
CieLch | The adapted color |
Adapt(in CieLchuv)
Adapts CieLchuv color from the source white point to white point set in TargetLabWhitePoint.
Declaration
public CieLchuv Adapt(in CieLchuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLchuv | color | The color to adapt |
Returns
Type | Description |
---|---|
CieLchuv | The adapted color |
Adapt(in CieLuv)
Adapts CieLuv color from the source white point to white point set in TargetLuvWhitePoint.
Declaration
public CieLuv Adapt(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to adapt |
Returns
Type | Description |
---|---|
CieLuv | The adapted color |
Adapt(in CieXyz, in CieXyz)
Performs chromatic adaptation of given CieXyz color. Target white point is WhitePoint.
Declaration
public CieXyz Adapt(in CieXyz color, in CieXyz sourceWhitePoint)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to adapt |
CieXyz | sourceWhitePoint | The source white point. |
Returns
Type | Description |
---|---|
CieXyz | The adapted color |
Adapt(in CieXyz, in CieXyz, in CieXyz)
Performs chromatic adaptation of given CieXyz color. Target white point is WhitePoint.
Declaration
public CieXyz Adapt(in CieXyz color, in CieXyz sourceWhitePoint, in CieXyz targetWhitePoint)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to adapt |
CieXyz | sourceWhitePoint | The source white point. |
CieXyz | targetWhitePoint | The target white point. |
Returns
Type | Description |
---|---|
CieXyz | The adapted color |
Adapt(in HunterLab)
Adapts HunterLab color from the source white point to white point set in TargetHunterLabWhitePoint.
Declaration
public HunterLab Adapt(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to adapt |
Returns
Type | Description |
---|---|
HunterLab | The adapted color |
Adapt(in LinearRgb)
Adapts a LinearRgb color from the source working space to working space set in TargetRgbWorkingSpace.
Declaration
public LinearRgb Adapt(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to adapt |
Returns
Type | Description |
---|---|
LinearRgb | The adapted color |
Adapt(in Rgb)
Adapts an Rgb color from the source working space to working space set in TargetRgbWorkingSpace.
Declaration
public Rgb Adapt(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to adapt |
Returns
Type | Description |
---|---|
Rgb | The adapted color |
Convert(ReadOnlySpan<CieLab>, Span<CieLchuv>)
Declaration
public void Convert(ReadOnlySpan<CieLab> source, Span<CieLchuv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLab> | source | The span to the source colors |
Span<CieLchuv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLab>, Span<CieLch>)
Declaration
public void Convert(ReadOnlySpan<CieLab> source, Span<CieLch> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLab> | source | The span to the source colors |
Span<CieLch> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLab>, Span<CieLuv>)
Declaration
public void Convert(ReadOnlySpan<CieLab> source, Span<CieLuv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLab> | source | The span to the source colors |
Span<CieLuv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLab>, Span<CieXyy>)
Declaration
public void Convert(ReadOnlySpan<CieLab> source, Span<CieXyy> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLab> | source | The span to the source colors |
Span<CieXyy> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLab>, Span<CieXyz>)
Declaration
public void Convert(ReadOnlySpan<CieLab> source, Span<CieXyz> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLab> | source | The span to the source colors |
Span<CieXyz> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLab>, Span<Cmyk>)
Declaration
public void Convert(ReadOnlySpan<CieLab> source, Span<Cmyk> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLab> | source | The span to the source colors |
Span<Cmyk> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLab>, Span<Hsl>)
Declaration
public void Convert(ReadOnlySpan<CieLab> source, Span<Hsl> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLab> | source | The span to the source colors |
Span<Hsl> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLab>, Span<Hsv>)
Declaration
public void Convert(ReadOnlySpan<CieLab> source, Span<Hsv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLab> | source | The span to the source colors |
Span<Hsv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLab>, Span<HunterLab>)
Declaration
public void Convert(ReadOnlySpan<CieLab> source, Span<HunterLab> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLab> | source | The span to the source colors. |
Span<HunterLab> | destination | The span to the destination colors. |
Convert(ReadOnlySpan<CieLab>, Span<LinearRgb>)
Declaration
public void Convert(ReadOnlySpan<CieLab> source, Span<LinearRgb> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLab> | source | The span to the source colors. |
Span<LinearRgb> | destination | The span to the destination colors. |
Convert(ReadOnlySpan<CieLab>, Span<Lms>)
Declaration
public void Convert(ReadOnlySpan<CieLab> source, Span<Lms> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLab> | source | The span to the source colors |
Span<Lms> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLab>, Span<Rgb>)
Declaration
public void Convert(ReadOnlySpan<CieLab> source, Span<Rgb> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLab> | source | The span to the source colors |
Span<Rgb> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLab>, Span<YCbCr>)
Declaration
public void Convert(ReadOnlySpan<CieLab> source, Span<YCbCr> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLab> | source | The span to the source colors. |
Span<YCbCr> | destination | The span to the destination colors. |
Convert(ReadOnlySpan<CieLchuv>, Span<CieLab>)
Declaration
public void Convert(ReadOnlySpan<CieLchuv> source, Span<CieLab> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLchuv> | source | The span to the source colors |
Span<CieLab> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLchuv>, Span<CieLch>)
Declaration
public void Convert(ReadOnlySpan<CieLchuv> source, Span<CieLch> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLchuv> | source | The span to the source colors |
Span<CieLch> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLchuv>, Span<CieLuv>)
Declaration
public void Convert(ReadOnlySpan<CieLchuv> source, Span<CieLuv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLchuv> | source | The span to the source colors |
Span<CieLuv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLchuv>, Span<CieXyy>)
Declaration
public void Convert(ReadOnlySpan<CieLchuv> source, Span<CieXyy> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLchuv> | source | The span to the source colors |
Span<CieXyy> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLchuv>, Span<CieXyz>)
Declaration
public void Convert(ReadOnlySpan<CieLchuv> source, Span<CieXyz> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLchuv> | source | The span to the source colors |
Span<CieXyz> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLchuv>, Span<Cmyk>)
Declaration
public void Convert(ReadOnlySpan<CieLchuv> source, Span<Cmyk> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLchuv> | source | The span to the source colors |
Span<Cmyk> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLchuv>, Span<Hsl>)
Declaration
public void Convert(ReadOnlySpan<CieLchuv> source, Span<Hsl> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLchuv> | source | The span to the source colors |
Span<Hsl> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLchuv>, Span<Hsv>)
Declaration
public void Convert(ReadOnlySpan<CieLchuv> source, Span<Hsv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLchuv> | source | The span to the source colors |
Span<Hsv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLchuv>, Span<HunterLab>)
Declaration
public void Convert(ReadOnlySpan<CieLchuv> source, Span<HunterLab> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLchuv> | source | The span to the source colors |
Span<HunterLab> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLchuv>, Span<LinearRgb>)
Declaration
public void Convert(ReadOnlySpan<CieLchuv> source, Span<LinearRgb> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLchuv> | source | The span to the source colors. |
Span<LinearRgb> | destination | The span to the destination colors. |
Convert(ReadOnlySpan<CieLchuv>, Span<Lms>)
Declaration
public void Convert(ReadOnlySpan<CieLchuv> source, Span<Lms> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLchuv> | source | The span to the source colors |
Span<Lms> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLchuv>, Span<Rgb>)
Declaration
public void Convert(ReadOnlySpan<CieLchuv> source, Span<Rgb> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLchuv> | source | The span to the source colors |
Span<Rgb> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLch>, Span<CieLab>)
Declaration
public void Convert(ReadOnlySpan<CieLch> source, Span<CieLab> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLch> | source | The span to the source colors |
Span<CieLab> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLch>, Span<CieLchuv>)
Declaration
public void Convert(ReadOnlySpan<CieLch> source, Span<CieLchuv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLch> | source | The span to the source colors |
Span<CieLchuv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLch>, Span<CieLuv>)
Declaration
public void Convert(ReadOnlySpan<CieLch> source, Span<CieLuv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLch> | source | The span to the source colors |
Span<CieLuv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLch>, Span<CieXyy>)
Declaration
public void Convert(ReadOnlySpan<CieLch> source, Span<CieXyy> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLch> | source | The span to the source colors |
Span<CieXyy> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLch>, Span<CieXyz>)
Declaration
public void Convert(ReadOnlySpan<CieLch> source, Span<CieXyz> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLch> | source | The span to the source colors |
Span<CieXyz> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLch>, Span<Cmyk>)
Declaration
public void Convert(ReadOnlySpan<CieLch> source, Span<Cmyk> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLch> | source | The span to the source colors |
Span<Cmyk> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLch>, Span<Hsl>)
Declaration
public void Convert(ReadOnlySpan<CieLch> source, Span<Hsl> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLch> | source | The span to the source colors |
Span<Hsl> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLch>, Span<Hsv>)
Declaration
public void Convert(ReadOnlySpan<CieLch> source, Span<Hsv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLch> | source | The span to the source colors |
Span<Hsv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLch>, Span<HunterLab>)
Declaration
public void Convert(ReadOnlySpan<CieLch> source, Span<HunterLab> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLch> | source | The span to the source colors. |
Span<HunterLab> | destination | The span to the destination colors. |
Convert(ReadOnlySpan<CieLch>, Span<LinearRgb>)
Declaration
public void Convert(ReadOnlySpan<CieLch> source, Span<LinearRgb> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLch> | source | The span to the source colors. |
Span<LinearRgb> | destination | The span to the destination colors. |
Convert(ReadOnlySpan<CieLch>, Span<Lms>)
Declaration
public void Convert(ReadOnlySpan<CieLch> source, Span<Lms> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLch> | source | The span to the source colors |
Span<Lms> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLch>, Span<Rgb>)
Declaration
public void Convert(ReadOnlySpan<CieLch> source, Span<Rgb> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLch> | source | The span to the source colors |
Span<Rgb> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLch>, Span<YCbCr>)
Declaration
public void Convert(ReadOnlySpan<CieLch> source, Span<YCbCr> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLch> | source | The span to the source colors. |
Span<YCbCr> | destination | The span to the destination colors. |
Convert(ReadOnlySpan<CieLuv>, Span<CieLab>)
Declaration
public void Convert(ReadOnlySpan<CieLuv> source, Span<CieLab> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLuv> | source | The span to the source colors |
Span<CieLab> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLuv>, Span<CieLchuv>)
Declaration
public void Convert(ReadOnlySpan<CieLuv> source, Span<CieLchuv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLuv> | source | The span to the source colors |
Span<CieLchuv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLuv>, Span<CieLch>)
Declaration
public void Convert(ReadOnlySpan<CieLuv> source, Span<CieLch> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLuv> | source | The span to the source colors |
Span<CieLch> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLuv>, Span<CieXyy>)
Declaration
public void Convert(ReadOnlySpan<CieLuv> source, Span<CieXyy> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLuv> | source | The span to the source colors |
Span<CieXyy> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLuv>, Span<CieXyz>)
Declaration
public void Convert(ReadOnlySpan<CieLuv> source, Span<CieXyz> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLuv> | source | The span to the source colors |
Span<CieXyz> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLuv>, Span<Cmyk>)
Declaration
public void Convert(ReadOnlySpan<CieLuv> source, Span<Cmyk> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLuv> | source | The span to the source colors |
Span<Cmyk> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLuv>, Span<Hsl>)
Declaration
public void Convert(ReadOnlySpan<CieLuv> source, Span<Hsl> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLuv> | source | The span to the source colors |
Span<Hsl> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLuv>, Span<Hsv>)
Declaration
public void Convert(ReadOnlySpan<CieLuv> source, Span<Hsv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLuv> | source | The span to the source colors |
Span<Hsv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLuv>, Span<HunterLab>)
Declaration
public void Convert(ReadOnlySpan<CieLuv> source, Span<HunterLab> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLuv> | source | The span to the source colors |
Span<HunterLab> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLuv>, Span<LinearRgb>)
Declaration
public void Convert(ReadOnlySpan<CieLuv> source, Span<LinearRgb> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLuv> | source | The span to the source colors. |
Span<LinearRgb> | destination | The span to the destination colors. |
Convert(ReadOnlySpan<CieLuv>, Span<Lms>)
Declaration
public void Convert(ReadOnlySpan<CieLuv> source, Span<Lms> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLuv> | source | The span to the source colors |
Span<Lms> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLuv>, Span<Rgb>)
Declaration
public void Convert(ReadOnlySpan<CieLuv> source, Span<Rgb> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLuv> | source | The span to the source colors |
Span<Rgb> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieLuv>, Span<YCbCr>)
Declaration
public void Convert(ReadOnlySpan<CieLuv> source, Span<YCbCr> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieLuv> | source | The span to the source colors |
Span<YCbCr> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieXyy>, Span<CieLab>)
Declaration
public void Convert(ReadOnlySpan<CieXyy> source, Span<CieLab> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieXyy> | source | The span to the source colors |
Span<CieLab> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieXyy>, Span<CieLchuv>)
Declaration
public void Convert(ReadOnlySpan<CieXyy> source, Span<CieLchuv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieXyy> | source | The span to the source colors |
Span<CieLchuv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieXyy>, Span<CieLch>)
Declaration
public void Convert(ReadOnlySpan<CieXyy> source, Span<CieLch> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieXyy> | source | The span to the source colors |
Span<CieLch> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieXyy>, Span<CieLuv>)
Declaration
public void Convert(ReadOnlySpan<CieXyy> source, Span<CieLuv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieXyy> | source | The span to the source colors |
Span<CieLuv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieXyy>, Span<CieXyz>)
Declaration
public static void Convert(ReadOnlySpan<CieXyy> source, Span<CieXyz> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieXyy> | source | The span to the source colors |
Span<CieXyz> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieXyy>, Span<Cmyk>)
Declaration
public void Convert(ReadOnlySpan<CieXyy> source, Span<Cmyk> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieXyy> | source | The span to the source colors |
Span<Cmyk> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieXyy>, Span<Hsl>)
Declaration
public void Convert(ReadOnlySpan<CieXyy> source, Span<Hsl> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieXyy> | source | The span to the source colors |
Span<Hsl> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieXyy>, Span<Hsv>)
Declaration
public void Convert(ReadOnlySpan<CieXyy> source, Span<Hsv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieXyy> | source | The span to the source colors |
Span<Hsv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieXyy>, Span<HunterLab>)
Declaration
public void Convert(ReadOnlySpan<CieXyy> source, Span<HunterLab> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieXyy> | source | The span to the source colors. |
Span<HunterLab> | destination | The span to the destination colors. |
Convert(ReadOnlySpan<CieXyy>, Span<LinearRgb>)
Declaration
public void Convert(ReadOnlySpan<CieXyy> source, Span<LinearRgb> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieXyy> | source | The span to the source colors. |
Span<LinearRgb> | destination | The span to the destination colors. |
Convert(ReadOnlySpan<CieXyy>, Span<Lms>)
Declaration
public void Convert(ReadOnlySpan<CieXyy> source, Span<Lms> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieXyy> | source | The span to the source colors |
Span<Lms> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieXyy>, Span<Rgb>)
Declaration
public void Convert(ReadOnlySpan<CieXyy> source, Span<Rgb> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieXyy> | source | The span to the source colors |
Span<Rgb> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieXyy>, Span<YCbCr>)
Declaration
public void Convert(ReadOnlySpan<CieXyy> source, Span<YCbCr> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieXyy> | source | The span to the source colors |
Span<YCbCr> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieXyz>, Span<CieLab>)
Declaration
public void Convert(ReadOnlySpan<CieXyz> source, Span<CieLab> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieXyz> | source | The span to the source colors |
Span<CieLab> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieXyz>, Span<CieLchuv>)
Declaration
public void Convert(ReadOnlySpan<CieXyz> source, Span<CieLchuv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieXyz> | source | The span to the source colors |
Span<CieLchuv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieXyz>, Span<CieLch>)
Declaration
public void Convert(ReadOnlySpan<CieXyz> source, Span<CieLch> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieXyz> | source | The span to the source colors |
Span<CieLch> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieXyz>, Span<CieLuv>)
Declaration
public void Convert(ReadOnlySpan<CieXyz> source, Span<CieLuv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieXyz> | source | The span to the source colors |
Span<CieLuv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieXyz>, Span<CieXyy>)
Declaration
public static void Convert(ReadOnlySpan<CieXyz> source, Span<CieXyy> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieXyz> | source | The span to the source colors |
Span<CieXyy> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieXyz>, Span<Cmyk>)
Declaration
public void Convert(ReadOnlySpan<CieXyz> source, Span<Cmyk> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieXyz> | source | The span to the source colors |
Span<Cmyk> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieXyz>, Span<Hsl>)
Declaration
public void Convert(ReadOnlySpan<CieXyz> source, Span<Hsl> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieXyz> | source | The span to the source colors |
Span<Hsl> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieXyz>, Span<Hsv>)
Declaration
public void Convert(ReadOnlySpan<CieXyz> source, Span<Hsv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieXyz> | source | The span to the source colors |
Span<Hsv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieXyz>, Span<HunterLab>)
Declaration
public void Convert(ReadOnlySpan<CieXyz> source, Span<HunterLab> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieXyz> | source | The span to the source colors. |
Span<HunterLab> | destination | The span to the destination colors. |
Convert(ReadOnlySpan<CieXyz>, Span<LinearRgb>)
Declaration
public void Convert(ReadOnlySpan<CieXyz> source, Span<LinearRgb> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieXyz> | source | The span to the source colors. |
Span<LinearRgb> | destination | The span to the destination colors. |
Convert(ReadOnlySpan<CieXyz>, Span<Lms>)
Declaration
public void Convert(ReadOnlySpan<CieXyz> source, Span<Lms> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieXyz> | source | The span to the source colors |
Span<Lms> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieXyz>, Span<Rgb>)
Declaration
public void Convert(ReadOnlySpan<CieXyz> source, Span<Rgb> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieXyz> | source | The span to the source colors |
Span<Rgb> | destination | The span to the destination colors |
Convert(ReadOnlySpan<CieXyz>, Span<YCbCr>)
Declaration
public void Convert(ReadOnlySpan<CieXyz> source, Span<YCbCr> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<CieXyz> | source | The span to the source colors |
Span<YCbCr> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Cmyk>, Span<CieLab>)
Declaration
public void Convert(ReadOnlySpan<Cmyk> source, Span<CieLab> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Cmyk> | source | The span to the source colors |
Span<CieLab> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Cmyk>, Span<CieLchuv>)
Declaration
public void Convert(ReadOnlySpan<Cmyk> source, Span<CieLchuv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Cmyk> | source | The span to the source colors |
Span<CieLchuv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Cmyk>, Span<CieLch>)
Declaration
public void Convert(ReadOnlySpan<Cmyk> source, Span<CieLch> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Cmyk> | source | The span to the source colors |
Span<CieLch> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Cmyk>, Span<CieLuv>)
Declaration
public void Convert(ReadOnlySpan<Cmyk> source, Span<CieLuv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Cmyk> | source | The span to the source colors |
Span<CieLuv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Cmyk>, Span<CieXyy>)
Declaration
public void Convert(ReadOnlySpan<Cmyk> source, Span<CieXyy> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Cmyk> | source | The span to the source colors |
Span<CieXyy> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Cmyk>, Span<CieXyz>)
Declaration
public void Convert(ReadOnlySpan<Cmyk> source, Span<CieXyz> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Cmyk> | source | The span to the source colors |
Span<CieXyz> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Cmyk>, Span<Hsl>)
Declaration
public static void Convert(ReadOnlySpan<Cmyk> source, Span<Hsl> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Cmyk> | source | The span to the source colors |
Span<Hsl> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Cmyk>, Span<Hsv>)
Declaration
public static void Convert(ReadOnlySpan<Cmyk> source, Span<Hsv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Cmyk> | source | The span to the source colors |
Span<Hsv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Cmyk>, Span<HunterLab>)
Declaration
public void Convert(ReadOnlySpan<Cmyk> source, Span<HunterLab> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Cmyk> | source | The span to the source colors |
Span<HunterLab> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Cmyk>, Span<LinearRgb>)
Declaration
public static void Convert(ReadOnlySpan<Cmyk> source, Span<LinearRgb> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Cmyk> | source | The span to the source colors. |
Span<LinearRgb> | destination | The span to the destination colors. |
Convert(ReadOnlySpan<Cmyk>, Span<Lms>)
Declaration
public void Convert(ReadOnlySpan<Cmyk> source, Span<Lms> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Cmyk> | source | The span to the source colors |
Span<Lms> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Cmyk>, Span<Rgb>)
Declaration
public static void Convert(ReadOnlySpan<Cmyk> source, Span<Rgb> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Cmyk> | source | The span to the source colors |
Span<Rgb> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Cmyk>, Span<YCbCr>)
Declaration
public static void Convert(ReadOnlySpan<Cmyk> source, Span<YCbCr> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Cmyk> | source | The span to the source colors |
Span<YCbCr> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Hsl>, Span<CieLab>)
Declaration
public void Convert(ReadOnlySpan<Hsl> source, Span<CieLab> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Hsl> | source | The span to the source colors |
Span<CieLab> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Hsl>, Span<CieLchuv>)
Declaration
public void Convert(ReadOnlySpan<Hsl> source, Span<CieLchuv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Hsl> | source | The span to the source colors |
Span<CieLchuv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Hsl>, Span<CieLch>)
Declaration
public void Convert(ReadOnlySpan<Hsl> source, Span<CieLch> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Hsl> | source | The span to the source colors |
Span<CieLch> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Hsl>, Span<CieLuv>)
Declaration
public void Convert(ReadOnlySpan<Hsl> source, Span<CieLuv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Hsl> | source | The span to the source colors |
Span<CieLuv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Hsl>, Span<CieXyy>)
Declaration
public void Convert(ReadOnlySpan<Hsl> source, Span<CieXyy> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Hsl> | source | The span to the source colors |
Span<CieXyy> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Hsl>, Span<CieXyz>)
Declaration
public void Convert(ReadOnlySpan<Hsl> source, Span<CieXyz> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Hsl> | source | The span to the source colors. |
Span<CieXyz> | destination | The span to the destination colors. |
Convert(ReadOnlySpan<Hsl>, Span<Cmyk>)
Declaration
public static void Convert(ReadOnlySpan<Hsl> source, Span<Cmyk> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Hsl> | source | The span to the source colors |
Span<Cmyk> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Hsl>, Span<Hsv>)
Declaration
public static void Convert(ReadOnlySpan<Hsl> source, Span<Hsv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Hsl> | source | The span to the source colors |
Span<Hsv> | destination | The span to the destination colors. |
Convert(ReadOnlySpan<Hsl>, Span<HunterLab>)
Declaration
public void Convert(ReadOnlySpan<Hsl> source, Span<HunterLab> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Hsl> | source | The span to the source colors |
Span<HunterLab> | destination | The span to the destination colors. |
Convert(ReadOnlySpan<Hsl>, Span<LinearRgb>)
Declaration
public static void Convert(ReadOnlySpan<Hsl> source, Span<LinearRgb> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Hsl> | source | The span to the source colors. |
Span<LinearRgb> | destination | The span to the destination colors. |
Convert(ReadOnlySpan<Hsl>, Span<Lms>)
Declaration
public void Convert(ReadOnlySpan<Hsl> source, Span<Lms> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Hsl> | source | The span to the source colors |
Span<Lms> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Hsl>, Span<Rgb>)
Declaration
public static void Convert(ReadOnlySpan<Hsl> source, Span<Rgb> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Hsl> | source | The span to the source colors |
Span<Rgb> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Hsl>, Span<YCbCr>)
Declaration
public static void Convert(ReadOnlySpan<Hsl> source, Span<YCbCr> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Hsl> | source | The span to the source colors |
Span<YCbCr> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Hsv>, Span<CieLab>)
Declaration
public void Convert(ReadOnlySpan<Hsv> source, Span<CieLab> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Hsv> | source | The span to the source colors |
Span<CieLab> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Hsv>, Span<CieLchuv>)
Declaration
public void Convert(ReadOnlySpan<Hsv> source, Span<CieLchuv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Hsv> | source | The span to the source colors |
Span<CieLchuv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Hsv>, Span<CieLch>)
Declaration
public void Convert(ReadOnlySpan<Hsv> source, Span<CieLch> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Hsv> | source | The span to the source colors |
Span<CieLch> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Hsv>, Span<CieLuv>)
Declaration
public void Convert(ReadOnlySpan<Hsv> source, Span<CieLuv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Hsv> | source | The span to the source colors |
Span<CieLuv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Hsv>, Span<CieXyy>)
Declaration
public void Convert(ReadOnlySpan<Hsv> source, Span<CieXyy> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Hsv> | source | The span to the source colors |
Span<CieXyy> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Hsv>, Span<CieXyz>)
Declaration
public void Convert(ReadOnlySpan<Hsv> source, Span<CieXyz> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Hsv> | source | The span to the source colors |
Span<CieXyz> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Hsv>, Span<Cmyk>)
Declaration
public static void Convert(ReadOnlySpan<Hsv> source, Span<Cmyk> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Hsv> | source | The span to the source colors |
Span<Cmyk> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Hsv>, Span<Hsl>)
Declaration
public static void Convert(ReadOnlySpan<Hsv> source, Span<Hsl> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Hsv> | source | The span to the source colors |
Span<Hsl> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Hsv>, Span<HunterLab>)
Declaration
public void Convert(ReadOnlySpan<Hsv> source, Span<HunterLab> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Hsv> | source | The span to the source colors |
Span<HunterLab> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Hsv>, Span<LinearRgb>)
Declaration
public static void Convert(ReadOnlySpan<Hsv> source, Span<LinearRgb> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Hsv> | source | The span to the source colors. |
Span<LinearRgb> | destination | The span to the destination colors. |
Convert(ReadOnlySpan<Hsv>, Span<Lms>)
Declaration
public void Convert(ReadOnlySpan<Hsv> source, Span<Lms> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Hsv> | source | The span to the source colors |
Span<Lms> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Hsv>, Span<Rgb>)
Declaration
public static void Convert(ReadOnlySpan<Hsv> source, Span<Rgb> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Hsv> | source | The span to the source colors |
Span<Rgb> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Hsv>, Span<YCbCr>)
Declaration
public static void Convert(ReadOnlySpan<Hsv> source, Span<YCbCr> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Hsv> | source | The span to the source colors |
Span<YCbCr> | destination | The span to the destination colors |
Convert(ReadOnlySpan<HunterLab>, Span<CieLab>)
Declaration
public void Convert(ReadOnlySpan<HunterLab> source, Span<CieLab> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<HunterLab> | source | The span to the source colors |
Span<CieLab> | destination | The span to the destination colors |
Convert(ReadOnlySpan<HunterLab>, Span<CieLchuv>)
Declaration
public void Convert(ReadOnlySpan<HunterLab> source, Span<CieLchuv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<HunterLab> | source | The span to the source colors |
Span<CieLchuv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<HunterLab>, Span<CieLch>)
Declaration
public void Convert(ReadOnlySpan<HunterLab> source, Span<CieLch> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<HunterLab> | source | The span to the source colors |
Span<CieLch> | destination | The span to the destination colors |
Convert(ReadOnlySpan<HunterLab>, Span<CieLuv>)
Declaration
public void Convert(ReadOnlySpan<HunterLab> source, Span<CieLuv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<HunterLab> | source | The span to the source colors |
Span<CieLuv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<HunterLab>, Span<CieXyy>)
Declaration
public void Convert(ReadOnlySpan<HunterLab> source, Span<CieXyy> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<HunterLab> | source | The span to the source colors |
Span<CieXyy> | destination | The span to the destination colors |
Convert(ReadOnlySpan<HunterLab>, Span<CieXyz>)
Declaration
public void Convert(ReadOnlySpan<HunterLab> source, Span<CieXyz> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<HunterLab> | source | The span to the source colors |
Span<CieXyz> | destination | The span to the destination colors |
Convert(ReadOnlySpan<HunterLab>, Span<Cmyk>)
Declaration
public void Convert(ReadOnlySpan<HunterLab> source, Span<Cmyk> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<HunterLab> | source | The span to the source colors |
Span<Cmyk> | destination | The span to the destination colors |
Convert(ReadOnlySpan<HunterLab>, Span<Hsl>)
Declaration
public void Convert(ReadOnlySpan<HunterLab> source, Span<Hsl> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<HunterLab> | source | The span to the source colors |
Span<Hsl> | destination | The span to the destination colors |
Convert(ReadOnlySpan<HunterLab>, Span<Hsv>)
Declaration
public void Convert(ReadOnlySpan<HunterLab> source, Span<Hsv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<HunterLab> | source | The span to the source colors |
Span<Hsv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<HunterLab>, Span<LinearRgb>)
Declaration
public void Convert(ReadOnlySpan<HunterLab> source, Span<LinearRgb> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<HunterLab> | source | The span to the source colors. |
Span<LinearRgb> | destination | The span to the destination colors. |
Convert(ReadOnlySpan<HunterLab>, Span<Lms>)
Declaration
public void Convert(ReadOnlySpan<HunterLab> source, Span<Lms> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<HunterLab> | source | The span to the source colors |
Span<Lms> | destination | The span to the destination colors |
Convert(ReadOnlySpan<HunterLab>, Span<Rgb>)
Declaration
public void Convert(ReadOnlySpan<HunterLab> source, Span<Rgb> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<HunterLab> | source | The span to the source colors |
Span<Rgb> | destination | The span to the destination colors |
Convert(ReadOnlySpan<HunterLab>, Span<YCbCr>)
Declaration
public void Convert(ReadOnlySpan<HunterLab> source, Span<YCbCr> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<HunterLab> | source | The span to the source colors |
Span<YCbCr> | destination | The span to the destination colors |
Convert(ReadOnlySpan<LinearRgb>, Span<CieLab>)
Declaration
public void Convert(ReadOnlySpan<LinearRgb> source, Span<CieLab> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<LinearRgb> | source | The span to the source colors |
Span<CieLab> | destination | The span to the destination colors |
Convert(ReadOnlySpan<LinearRgb>, Span<CieLchuv>)
Declaration
public void Convert(ReadOnlySpan<LinearRgb> source, Span<CieLchuv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<LinearRgb> | source | The span to the source colors |
Span<CieLchuv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<LinearRgb>, Span<CieLch>)
Declaration
public void Convert(ReadOnlySpan<LinearRgb> source, Span<CieLch> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<LinearRgb> | source | The span to the source colors |
Span<CieLch> | destination | The span to the destination colors |
Convert(ReadOnlySpan<LinearRgb>, Span<CieLuv>)
Declaration
public void Convert(ReadOnlySpan<LinearRgb> source, Span<CieLuv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<LinearRgb> | source | The span to the source colors |
Span<CieLuv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<LinearRgb>, Span<CieXyy>)
Declaration
public void Convert(ReadOnlySpan<LinearRgb> source, Span<CieXyy> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<LinearRgb> | source | The span to the source colors |
Span<CieXyy> | destination | The span to the destination colors |
Convert(ReadOnlySpan<LinearRgb>, Span<CieXyz>)
Declaration
public void Convert(ReadOnlySpan<LinearRgb> source, Span<CieXyz> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<LinearRgb> | source | The span to the source colors. |
Span<CieXyz> | destination | The span to the destination colors. |
Convert(ReadOnlySpan<LinearRgb>, Span<Cmyk>)
Declaration
public static void Convert(ReadOnlySpan<LinearRgb> source, Span<Cmyk> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<LinearRgb> | source | The span to the source colors |
Span<Cmyk> | destination | The span to the destination colors |
Convert(ReadOnlySpan<LinearRgb>, Span<Hsl>)
Declaration
public static void Convert(ReadOnlySpan<LinearRgb> source, Span<Hsl> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<LinearRgb> | source | The span to the source colors |
Span<Hsl> | destination | The span to the destination colors |
Convert(ReadOnlySpan<LinearRgb>, Span<Hsv>)
Declaration
public static void Convert(ReadOnlySpan<LinearRgb> source, Span<Hsv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<LinearRgb> | source | The span to the source colors |
Span<Hsv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<LinearRgb>, Span<HunterLab>)
Declaration
public void Convert(ReadOnlySpan<LinearRgb> source, Span<HunterLab> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<LinearRgb> | source | The span to the source colors |
Span<HunterLab> | destination | The span to the destination colors |
Convert(ReadOnlySpan<LinearRgb>, Span<Lms>)
Declaration
public void Convert(ReadOnlySpan<LinearRgb> source, Span<Lms> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<LinearRgb> | source | The span to the source colors |
Span<Lms> | destination | The span to the destination colors |
Convert(ReadOnlySpan<LinearRgb>, Span<Rgb>)
Declaration
public static void Convert(ReadOnlySpan<LinearRgb> source, Span<Rgb> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<LinearRgb> | source | The span to the source colors |
Span<Rgb> | destination | The span to the destination colors |
Convert(ReadOnlySpan<LinearRgb>, Span<YCbCr>)
Declaration
public static void Convert(ReadOnlySpan<LinearRgb> source, Span<YCbCr> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<LinearRgb> | source | The span to the source colors |
Span<YCbCr> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Lms>, Span<CieLab>)
Declaration
public void Convert(ReadOnlySpan<Lms> source, Span<CieLab> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Lms> | source | The span to the source colors |
Span<CieLab> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Lms>, Span<CieLchuv>)
Declaration
public void Convert(ReadOnlySpan<Lms> source, Span<CieLchuv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Lms> | source | The span to the source colors |
Span<CieLchuv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Lms>, Span<CieLch>)
Declaration
public void Convert(ReadOnlySpan<Lms> source, Span<CieLch> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Lms> | source | The span to the source colors |
Span<CieLch> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Lms>, Span<CieLuv>)
Declaration
public void Convert(ReadOnlySpan<Lms> source, Span<CieLuv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Lms> | source | The span to the source colors |
Span<CieLuv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Lms>, Span<CieXyy>)
Declaration
public void Convert(ReadOnlySpan<Lms> source, Span<CieXyy> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Lms> | source | The span to the source colors |
Span<CieXyy> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Lms>, Span<CieXyz>)
Declaration
public void Convert(ReadOnlySpan<Lms> source, Span<CieXyz> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Lms> | source | The span to the source colors |
Span<CieXyz> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Lms>, Span<Cmyk>)
Declaration
public void Convert(ReadOnlySpan<Lms> source, Span<Cmyk> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Lms> | source | The span to the source colors, |
Span<Cmyk> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Lms>, Span<Hsl>)
Declaration
public void Convert(ReadOnlySpan<Lms> source, Span<Hsl> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Lms> | source | The span to the source colors |
Span<Hsl> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Lms>, Span<Hsv>)
Declaration
public void Convert(ReadOnlySpan<Lms> source, Span<Hsv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Lms> | source | The span to the source colors |
Span<Hsv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Lms>, Span<HunterLab>)
Declaration
public void Convert(ReadOnlySpan<Lms> source, Span<HunterLab> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Lms> | source | The span to the source colors |
Span<HunterLab> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Lms>, Span<LinearRgb>)
Declaration
public void Convert(ReadOnlySpan<Lms> source, Span<LinearRgb> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Lms> | source | The span to the source colors. |
Span<LinearRgb> | destination | The span to the destination colors. |
Convert(ReadOnlySpan<Lms>, Span<Rgb>)
Declaration
public void Convert(ReadOnlySpan<Lms> source, Span<Rgb> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Lms> | source | The span to the source colors |
Span<Rgb> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Lms>, Span<YCbCr>)
Declaration
public void Convert(ReadOnlySpan<Lms> source, Span<YCbCr> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Lms> | source | The span to the source colors |
Span<YCbCr> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Rgb>, Span<CieLab>)
Declaration
public void Convert(ReadOnlySpan<Rgb> source, Span<CieLab> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Rgb> | source | The span to the source colors |
Span<CieLab> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Rgb>, Span<CieLchuv>)
Declaration
public void Convert(ReadOnlySpan<Rgb> source, Span<CieLchuv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Rgb> | source | The span to the source colors |
Span<CieLchuv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Rgb>, Span<CieLch>)
Declaration
public void Convert(ReadOnlySpan<Rgb> source, Span<CieLch> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Rgb> | source | The span to the source colors |
Span<CieLch> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Rgb>, Span<CieLuv>)
Declaration
public void Convert(ReadOnlySpan<Rgb> source, Span<CieLuv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Rgb> | source | The span to the source colors |
Span<CieLuv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Rgb>, Span<CieXyy>)
Declaration
public void Convert(ReadOnlySpan<Rgb> source, Span<CieXyy> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Rgb> | source | The span to the source colors |
Span<CieXyy> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Rgb>, Span<CieXyz>)
Declaration
public void Convert(ReadOnlySpan<Rgb> source, Span<CieXyz> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Rgb> | source | The span to the source colors |
Span<CieXyz> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Rgb>, Span<Cmyk>)
Declaration
public static void Convert(ReadOnlySpan<Rgb> source, Span<Cmyk> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Rgb> | source | The span to the source colors |
Span<Cmyk> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Rgb>, Span<Hsl>)
Declaration
public static void Convert(ReadOnlySpan<Rgb> source, Span<Hsl> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Rgb> | source | The span to the source colors |
Span<Hsl> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Rgb>, Span<Hsv>)
Declaration
public static void Convert(ReadOnlySpan<Rgb> source, Span<Hsv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Rgb> | source | The span to the source colors |
Span<Hsv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Rgb>, Span<HunterLab>)
Declaration
public void Convert(ReadOnlySpan<Rgb> source, Span<HunterLab> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Rgb> | source | The span to the source colors |
Span<HunterLab> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Rgb>, Span<LinearRgb>)
Declaration
public static void Convert(ReadOnlySpan<Rgb> source, Span<LinearRgb> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Rgb> | source | The span to the source colors |
Span<LinearRgb> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Rgb>, Span<Lms>)
Declaration
public void Convert(ReadOnlySpan<Rgb> source, Span<Lms> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Rgb> | source | The span to the source colors |
Span<Lms> | destination | The span to the destination colors |
Convert(ReadOnlySpan<Rgb>, Span<YCbCr>)
Declaration
public static void Convert(ReadOnlySpan<Rgb> source, Span<YCbCr> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Rgb> | source | The span to the source colors |
Span<YCbCr> | destination | The span to the destination colors |
Convert(ReadOnlySpan<YCbCr>, Span<CieLab>)
Declaration
public void Convert(ReadOnlySpan<YCbCr> source, Span<CieLab> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<YCbCr> | source | The span to the source colors |
Span<CieLab> | destination | The span to the destination colors |
Convert(ReadOnlySpan<YCbCr>, Span<CieLchuv>)
Declaration
public void Convert(ReadOnlySpan<YCbCr> source, Span<CieLchuv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<YCbCr> | source | The span to the source colors |
Span<CieLchuv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<YCbCr>, Span<CieLch>)
Declaration
public void Convert(ReadOnlySpan<YCbCr> source, Span<CieLch> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<YCbCr> | source | The span to the source colors |
Span<CieLch> | destination | The span to the destination colors |
Convert(ReadOnlySpan<YCbCr>, Span<CieLuv>)
Declaration
public void Convert(ReadOnlySpan<YCbCr> source, Span<CieLuv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<YCbCr> | source | The span to the source colors. |
Span<CieLuv> | destination | The span to the destination colors. |
Convert(ReadOnlySpan<YCbCr>, Span<CieXyy>)
Declaration
public void Convert(ReadOnlySpan<YCbCr> source, Span<CieXyy> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<YCbCr> | source | The span to the source colors |
Span<CieXyy> | destination | The span to the destination colors |
Convert(ReadOnlySpan<YCbCr>, Span<CieXyz>)
Declaration
public void Convert(ReadOnlySpan<YCbCr> source, Span<CieXyz> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<YCbCr> | source | The span to the source colors |
Span<CieXyz> | destination | The span to the destination colors |
Convert(ReadOnlySpan<YCbCr>, Span<Cmyk>)
Declaration
public void Convert(ReadOnlySpan<YCbCr> source, Span<Cmyk> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<YCbCr> | source | The span to the source colors |
Span<Cmyk> | destination | The span to the destination colors |
Convert(ReadOnlySpan<YCbCr>, Span<Hsl>)
Declaration
public void Convert(ReadOnlySpan<YCbCr> source, Span<Hsl> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<YCbCr> | source | The span to the source colors |
Span<Hsl> | destination | The span to the destination colors |
Convert(ReadOnlySpan<YCbCr>, Span<Hsv>)
Declaration
public void Convert(ReadOnlySpan<YCbCr> source, Span<Hsv> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<YCbCr> | source | The span to the source colors |
Span<Hsv> | destination | The span to the destination colors |
Convert(ReadOnlySpan<YCbCr>, Span<HunterLab>)
Declaration
public void Convert(ReadOnlySpan<YCbCr> source, Span<HunterLab> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<YCbCr> | source | The span to the source colors |
Span<HunterLab> | destination | The span to the destination colors |
Convert(ReadOnlySpan<YCbCr>, Span<LinearRgb>)
Declaration
public void Convert(ReadOnlySpan<YCbCr> source, Span<LinearRgb> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<YCbCr> | source | The span to the source colors |
Span<LinearRgb> | destination | The span to the destination colors |
Convert(ReadOnlySpan<YCbCr>, Span<Lms>)
Declaration
public void Convert(ReadOnlySpan<YCbCr> source, Span<Lms> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<YCbCr> | source | The span to the source colors |
Span<Lms> | destination | The span to the destination colors |
Convert(ReadOnlySpan<YCbCr>, Span<Rgb>)
Declaration
public void Convert(ReadOnlySpan<YCbCr> source, Span<Rgb> destination)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<YCbCr> | source | The span to the source colors |
Span<Rgb> | destination | The span to the destination colors |
ToCieLab(in CieLch)
Declaration
public CieLab ToCieLab(in CieLch color)
Parameters
Type | Name | Description |
---|---|---|
CieLch | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLab | The CieLab |
ToCieLab(in CieLchuv)
Declaration
public CieLab ToCieLab(in CieLchuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLchuv | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLab | The CieLab |
ToCieLab(in CieLuv)
Declaration
public CieLab ToCieLab(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLab | The CieLab |
ToCieLab(in CieXyy)
Declaration
public CieLab ToCieLab(in CieXyy color)
Parameters
Type | Name | Description |
---|---|---|
CieXyy | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLab | The CieLab |
ToCieLab(in CieXyz)
Declaration
public CieLab ToCieLab(in CieXyz color)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLab | The CieLab |
ToCieLab(in Cmyk)
Declaration
public CieLab ToCieLab(in Cmyk color)
Parameters
Type | Name | Description |
---|---|---|
Cmyk | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLab | The CieLab |
ToCieLab(in Hsl)
Declaration
public CieLab ToCieLab(in Hsl color)
Parameters
Type | Name | Description |
---|---|---|
Hsl | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLab | The CieLab |
ToCieLab(in Hsv)
Declaration
public CieLab ToCieLab(in Hsv color)
Parameters
Type | Name | Description |
---|---|---|
Hsv | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLab | The CieLab |
ToCieLab(in HunterLab)
Declaration
public CieLab ToCieLab(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLab | The CieLab |
ToCieLab(in LinearRgb)
Declaration
public CieLab ToCieLab(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLab | The CieLab |
ToCieLab(in Lms)
Declaration
public CieLab ToCieLab(in Lms color)
Parameters
Type | Name | Description |
---|---|---|
Lms | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLab | The CieLab |
ToCieLab(in Rgb)
Declaration
public CieLab ToCieLab(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLab | The CieLab |
ToCieLab(in YCbCr)
Declaration
public CieLab ToCieLab(in YCbCr color)
Parameters
Type | Name | Description |
---|---|---|
YCbCr | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLab | The CieLab |
ToCieLch(in CieLab)
Declaration
public CieLch ToCieLch(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLch | The CieLch |
ToCieLch(in CieLchuv)
Declaration
public CieLch ToCieLch(in CieLchuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLchuv | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLch | The CieLch |
ToCieLch(in CieLuv)
Declaration
public CieLch ToCieLch(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLch | The CieLch |
ToCieLch(in CieXyy)
Declaration
public CieLch ToCieLch(in CieXyy color)
Parameters
Type | Name | Description |
---|---|---|
CieXyy | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLch | The CieLch |
ToCieLch(in CieXyz)
Declaration
public CieLch ToCieLch(in CieXyz color)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLch | The CieLch |
ToCieLch(in Cmyk)
Declaration
public CieLch ToCieLch(in Cmyk color)
Parameters
Type | Name | Description |
---|---|---|
Cmyk | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLch | The CieLch |
ToCieLch(in Hsl)
Declaration
public CieLch ToCieLch(in Hsl color)
Parameters
Type | Name | Description |
---|---|---|
Hsl | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLch | The CieLch |
ToCieLch(in Hsv)
Declaration
public CieLch ToCieLch(in Hsv color)
Parameters
Type | Name | Description |
---|---|---|
Hsv | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLch | The CieLch |
ToCieLch(in HunterLab)
Declaration
public CieLch ToCieLch(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLch | The CieLch |
ToCieLch(in LinearRgb)
Declaration
public CieLch ToCieLch(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLch | The CieLch |
ToCieLch(in Lms)
Declaration
public CieLch ToCieLch(in Lms color)
Parameters
Type | Name | Description |
---|---|---|
Lms | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLch | The CieLch |
ToCieLch(in Rgb)
Declaration
public CieLch ToCieLch(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLch | The CieLch |
ToCieLch(in YCbCr)
Declaration
public CieLch ToCieLch(in YCbCr color)
Parameters
Type | Name | Description |
---|---|---|
YCbCr | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLch | The CieLch |
ToCieLchuv(in CieLab)
Declaration
public CieLchuv ToCieLchuv(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLchuv | The CieLchuv |
ToCieLchuv(in CieLch)
Declaration
public CieLchuv ToCieLchuv(in CieLch color)
Parameters
Type | Name | Description |
---|---|---|
CieLch | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLchuv | The CieLchuv |
ToCieLchuv(in CieLuv)
Declaration
public CieLchuv ToCieLchuv(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLchuv | The CieLchuv |
ToCieLchuv(in CieXyy)
Declaration
public CieLchuv ToCieLchuv(in CieXyy color)
Parameters
Type | Name | Description |
---|---|---|
CieXyy | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLchuv | The CieLchuv |
ToCieLchuv(in CieXyz)
Declaration
public CieLchuv ToCieLchuv(in CieXyz color)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLchuv | The CieLchuv |
ToCieLchuv(in Cmyk)
Declaration
public CieLchuv ToCieLchuv(in Cmyk color)
Parameters
Type | Name | Description |
---|---|---|
Cmyk | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLchuv | The CieLchuv |
ToCieLchuv(in Hsl)
Declaration
public CieLchuv ToCieLchuv(in Hsl color)
Parameters
Type | Name | Description |
---|---|---|
Hsl | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLchuv | The CieLchuv |
ToCieLchuv(in Hsv)
Declaration
public CieLchuv ToCieLchuv(in Hsv color)
Parameters
Type | Name | Description |
---|---|---|
Hsv | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLchuv | The CieLchuv |
ToCieLchuv(in HunterLab)
Declaration
public CieLchuv ToCieLchuv(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLchuv | The CieLchuv |
ToCieLchuv(in LinearRgb)
Declaration
public CieLchuv ToCieLchuv(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLchuv | The CieLchuv |
ToCieLchuv(in Lms)
Declaration
public CieLchuv ToCieLchuv(in Lms color)
Parameters
Type | Name | Description |
---|---|---|
Lms | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLchuv | The CieLchuv |
ToCieLchuv(in Rgb)
Declaration
public CieLchuv ToCieLchuv(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLchuv | The CieLchuv |
ToCieLchuv(in YCbCr)
Declaration
public CieLchuv ToCieLchuv(in YCbCr color)
Parameters
Type | Name | Description |
---|---|---|
YCbCr | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLchuv | The CieLchuv |
ToCieLuv(in CieLab)
Declaration
public CieLuv ToCieLuv(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLuv | The CieLuv |
ToCieLuv(in CieLch)
Declaration
public CieLuv ToCieLuv(in CieLch color)
Parameters
Type | Name | Description |
---|---|---|
CieLch | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLuv | The CieLuv |
ToCieLuv(in CieLchuv)
Declaration
public CieLuv ToCieLuv(in CieLchuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLchuv | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLuv | The CieLab |
ToCieLuv(in CieXyy)
Declaration
public CieLuv ToCieLuv(in CieXyy color)
Parameters
Type | Name | Description |
---|---|---|
CieXyy | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLuv | The CieLuv |
ToCieLuv(in CieXyz)
Declaration
public CieLuv ToCieLuv(in CieXyz color)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLuv | The CieLuv |
ToCieLuv(in Cmyk)
Declaration
public CieLuv ToCieLuv(in Cmyk color)
Parameters
Type | Name | Description |
---|---|---|
Cmyk | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLuv | The CieLuv |
ToCieLuv(in Hsl)
Declaration
public CieLuv ToCieLuv(in Hsl color)
Parameters
Type | Name | Description |
---|---|---|
Hsl | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLuv | The CieLuv |
ToCieLuv(in Hsv)
Declaration
public CieLuv ToCieLuv(in Hsv color)
Parameters
Type | Name | Description |
---|---|---|
Hsv | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLuv | The CieLuv |
ToCieLuv(in HunterLab)
Declaration
public CieLuv ToCieLuv(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLuv | The CieLuv |
ToCieLuv(in LinearRgb)
Declaration
public CieLuv ToCieLuv(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLuv | The CieLuv |
ToCieLuv(in Lms)
Declaration
public CieLuv ToCieLuv(in Lms color)
Parameters
Type | Name | Description |
---|---|---|
Lms | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLuv | The CieLuv |
ToCieLuv(in Rgb)
Declaration
public CieLuv ToCieLuv(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLuv | The CieLuv |
ToCieLuv(in YCbCr)
Declaration
public CieLuv ToCieLuv(in YCbCr color)
Parameters
Type | Name | Description |
---|---|---|
YCbCr | color | The color to convert. |
Returns
Type | Description |
---|---|
CieLuv | The CieLuv |
ToCieXyy(in CieLab)
Declaration
public CieXyy ToCieXyy(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to convert. |
Returns
Type | Description |
---|---|
CieXyy | The CieXyy |
ToCieXyy(in CieLch)
Declaration
public CieXyy ToCieXyy(in CieLch color)
Parameters
Type | Name | Description |
---|---|---|
CieLch | color | The color to convert. |
Returns
Type | Description |
---|---|
CieXyy | The CieXyy |
ToCieXyy(in CieLchuv)
Declaration
public CieXyy ToCieXyy(in CieLchuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLchuv | color | The color to convert. |
Returns
Type | Description |
---|---|
CieXyy | The CieXyy |
ToCieXyy(in CieLuv)
Declaration
public CieXyy ToCieXyy(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to convert. |
Returns
Type | Description |
---|---|
CieXyy | The CieXyy |
ToCieXyy(in CieXyz)
Declaration
public static CieXyy ToCieXyy(in CieXyz color)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to convert. |
Returns
Type | Description |
---|---|
CieXyy | The CieXyy |
ToCieXyy(in Cmyk)
Declaration
public CieXyy ToCieXyy(in Cmyk color)
Parameters
Type | Name | Description |
---|---|---|
Cmyk | color | The color to convert. |
Returns
Type | Description |
---|---|
CieXyy | The CieXyy |
ToCieXyy(Hsl)
Declaration
public CieXyy ToCieXyy(Hsl color)
Parameters
Type | Name | Description |
---|---|---|
Hsl | color | The color to convert. |
Returns
Type | Description |
---|---|
CieXyy | The CieXyy |
ToCieXyy(in Hsv)
Declaration
public CieXyy ToCieXyy(in Hsv color)
Parameters
Type | Name | Description |
---|---|---|
Hsv | color | The color to convert. |
Returns
Type | Description |
---|---|
CieXyy | The CieXyy |
ToCieXyy(in HunterLab)
Declaration
public CieXyy ToCieXyy(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to convert. |
Returns
Type | Description |
---|---|
CieXyy | The CieXyy |
ToCieXyy(in LinearRgb)
Declaration
public CieXyy ToCieXyy(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to convert. |
Returns
Type | Description |
---|---|
CieXyy | The CieXyy |
ToCieXyy(in Lms)
Declaration
public CieXyy ToCieXyy(in Lms color)
Parameters
Type | Name | Description |
---|---|---|
Lms | color | The color to convert. |
Returns
Type | Description |
---|---|
CieXyy | The CieXyy |
ToCieXyy(in Rgb)
Declaration
public CieXyy ToCieXyy(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to convert. |
Returns
Type | Description |
---|---|
CieXyy | The CieXyy |
ToCieXyy(in YCbCr)
Declaration
public CieXyy ToCieXyy(in YCbCr color)
Parameters
Type | Name | Description |
---|---|---|
YCbCr | color | The color to convert. |
Returns
Type | Description |
---|---|
CieXyy | The CieXyy |
ToCieXyz(in CieLab)
Declaration
public CieXyz ToCieXyz(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to convert. |
Returns
Type | Description |
---|---|
CieXyz | The CieXyz |
ToCieXyz(in CieLch)
Declaration
public CieXyz ToCieXyz(in CieLch color)
Parameters
Type | Name | Description |
---|---|---|
CieLch | color | The color to convert. |
Returns
Type | Description |
---|---|
CieXyz | The CieXyz |
ToCieXyz(in CieLchuv)
Declaration
public CieXyz ToCieXyz(in CieLchuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLchuv | color | The color to convert. |
Returns
Type | Description |
---|---|
CieXyz | The CieXyz |
ToCieXyz(in CieLuv)
Declaration
public CieXyz ToCieXyz(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to convert. |
Returns
Type | Description |
---|---|
CieXyz | The CieXyz |
ToCieXyz(in CieXyy)
Declaration
public static CieXyz ToCieXyz(in CieXyy color)
Parameters
Type | Name | Description |
---|---|---|
CieXyy | color | The color to convert. |
Returns
Type | Description |
---|---|
CieXyz | The CieXyz |
ToCieXyz(in Cmyk)
Declaration
public CieXyz ToCieXyz(in Cmyk color)
Parameters
Type | Name | Description |
---|---|---|
Cmyk | color | The color to convert. |
Returns
Type | Description |
---|---|
CieXyz | The CieXyz |
ToCieXyz(in Hsl)
Declaration
public CieXyz ToCieXyz(in Hsl color)
Parameters
Type | Name | Description |
---|---|---|
Hsl | color | The color to convert. |
Returns
Type | Description |
---|---|
CieXyz | The CieXyz |
ToCieXyz(in Hsv)
Declaration
public CieXyz ToCieXyz(in Hsv color)
Parameters
Type | Name | Description |
---|---|---|
Hsv | color | The color to convert. |
Returns
Type | Description |
---|---|
CieXyz | The CieXyz |
ToCieXyz(in HunterLab)
Declaration
public CieXyz ToCieXyz(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to convert. |
Returns
Type | Description |
---|---|
CieXyz | The CieXyz |
ToCieXyz(in LinearRgb)
Declaration
public CieXyz ToCieXyz(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to convert. |
Returns
Type | Description |
---|---|
CieXyz | The CieXyz |
ToCieXyz(in Lms)
Declaration
public CieXyz ToCieXyz(in Lms color)
Parameters
Type | Name | Description |
---|---|---|
Lms | color | The color to convert. |
Returns
Type | Description |
---|---|
CieXyz | The CieXyz |
ToCieXyz(in Rgb)
Declaration
public CieXyz ToCieXyz(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to convert. |
Returns
Type | Description |
---|---|
CieXyz | The CieXyz |
ToCieXyz(in YCbCr)
Declaration
public CieXyz ToCieXyz(in YCbCr color)
Parameters
Type | Name | Description |
---|---|---|
YCbCr | color | The color to convert. |
Returns
Type | Description |
---|---|
CieXyz | The CieXyz |
ToCmyk(in CieLab)
Declaration
public Cmyk ToCmyk(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to convert. |
Returns
Type | Description |
---|---|
Cmyk | The Cmyk |
ToCmyk(in CieLch)
Declaration
public Cmyk ToCmyk(in CieLch color)
Parameters
Type | Name | Description |
---|---|---|
CieLch | color | The color to convert. |
Returns
Type | Description |
---|---|
Cmyk | The Cmyk |
ToCmyk(in CieLchuv)
Declaration
public Cmyk ToCmyk(in CieLchuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLchuv | color | The color to convert. |
Returns
Type | Description |
---|---|
Cmyk | The Cmyk |
ToCmyk(in CieLuv)
Declaration
public Cmyk ToCmyk(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to convert. |
Returns
Type | Description |
---|---|
Cmyk | The Cmyk |
ToCmyk(in CieXyy)
Declaration
public Cmyk ToCmyk(in CieXyy color)
Parameters
Type | Name | Description |
---|---|---|
CieXyy | color | The color to convert. |
Returns
Type | Description |
---|---|
Cmyk | The Cmyk |
ToCmyk(in CieXyz)
Declaration
public Cmyk ToCmyk(in CieXyz color)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to convert. |
Returns
Type | Description |
---|---|
Cmyk | The Cmyk |
ToCmyk(in Hsl)
Declaration
public static Cmyk ToCmyk(in Hsl color)
Parameters
Type | Name | Description |
---|---|---|
Hsl | color | The color to convert. |
Returns
Type | Description |
---|---|
Cmyk | The Cmyk |
ToCmyk(in Hsv)
Declaration
public static Cmyk ToCmyk(in Hsv color)
Parameters
Type | Name | Description |
---|---|---|
Hsv | color | The color to convert. |
Returns
Type | Description |
---|---|
Cmyk | The Cmyk |
ToCmyk(in HunterLab)
Declaration
public Cmyk ToCmyk(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to convert. |
Returns
Type | Description |
---|---|
Cmyk | The Cmyk |
ToCmyk(in LinearRgb)
Declaration
public static Cmyk ToCmyk(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to convert. |
Returns
Type | Description |
---|---|
Cmyk | The Cmyk |
ToCmyk(in Lms)
Declaration
public Cmyk ToCmyk(in Lms color)
Parameters
Type | Name | Description |
---|---|---|
Lms | color | The color to convert. |
Returns
Type | Description |
---|---|
Cmyk | The Cmyk |
ToCmyk(in Rgb)
Declaration
public static Cmyk ToCmyk(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to convert. |
Returns
Type | Description |
---|---|
Cmyk | The Cmyk |
ToCmyk(in YCbCr)
Declaration
public Cmyk ToCmyk(in YCbCr color)
Parameters
Type | Name | Description |
---|---|---|
YCbCr | color | The color to convert. |
Returns
Type | Description |
---|---|
Cmyk | The Cmyk |
ToHsl(in CieLab)
Declaration
public Hsl ToHsl(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to convert. |
Returns
Type | Description |
---|---|
Hsl | The Hsl |
ToHsl(in CieLch)
Declaration
public Hsl ToHsl(in CieLch color)
Parameters
Type | Name | Description |
---|---|---|
CieLch | color | The color to convert. |
Returns
Type | Description |
---|---|
Hsl | The Hsl |
ToHsl(in CieLchuv)
Declaration
public Hsl ToHsl(in CieLchuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLchuv | color | The color to convert. |
Returns
Type | Description |
---|---|
Hsl | The Hsl |
ToHsl(in CieLuv)
Declaration
public Hsl ToHsl(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to convert. |
Returns
Type | Description |
---|---|
Hsl | The Hsl |
ToHsl(in CieXyy)
Declaration
public Hsl ToHsl(in CieXyy color)
Parameters
Type | Name | Description |
---|---|---|
CieXyy | color | The color to convert. |
Returns
Type | Description |
---|---|
Hsl | The Hsl |
ToHsl(in CieXyz)
Declaration
public Hsl ToHsl(in CieXyz color)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to convert. |
Returns
Type | Description |
---|---|
Hsl | The Hsl |
ToHsl(in Cmyk)
Declaration
public static Hsl ToHsl(in Cmyk color)
Parameters
Type | Name | Description |
---|---|---|
Cmyk | color | The color to convert. |
Returns
Type | Description |
---|---|
Hsl | The Hsl |
ToHsl(in Hsv)
Declaration
public static Hsl ToHsl(in Hsv color)
Parameters
Type | Name | Description |
---|---|---|
Hsv | color | The color to convert. |
Returns
Type | Description |
---|---|
Hsl | The Hsl |
ToHsl(in HunterLab)
Declaration
public Hsl ToHsl(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to convert. |
Returns
Type | Description |
---|---|
Hsl | The Hsl |
ToHsl(in LinearRgb)
Declaration
public static Hsl ToHsl(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to convert. |
Returns
Type | Description |
---|---|
Hsl | The Hsl |
ToHsl(Lms)
Declaration
public Hsl ToHsl(Lms color)
Parameters
Type | Name | Description |
---|---|---|
Lms | color | The color to convert. |
Returns
Type | Description |
---|---|
Hsl | The Hsl |
ToHsl(in Rgb)
Declaration
public static Hsl ToHsl(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to convert. |
Returns
Type | Description |
---|---|
Hsl | The Hsl |
ToHsl(in YCbCr)
Declaration
public Hsl ToHsl(in YCbCr color)
Parameters
Type | Name | Description |
---|---|---|
YCbCr | color | The color to convert. |
Returns
Type | Description |
---|---|
Hsl | The Hsl |
ToHsv(in CieLab)
Declaration
public Hsv ToHsv(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to convert. |
Returns
Type | Description |
---|---|
Hsv | The Hsv |
ToHsv(in CieLch)
Declaration
public Hsv ToHsv(in CieLch color)
Parameters
Type | Name | Description |
---|---|---|
CieLch | color | The color to convert. |
Returns
Type | Description |
---|---|
Hsv | The Hsv |
ToHsv(in CieLchuv)
Declaration
public Hsv ToHsv(in CieLchuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLchuv | color | The color to convert. |
Returns
Type | Description |
---|---|
Hsv | The Hsv |
ToHsv(in CieLuv)
Declaration
public Hsv ToHsv(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to convert. |
Returns
Type | Description |
---|---|
Hsv | The Hsv |
ToHsv(in CieXyy)
Declaration
public Hsv ToHsv(in CieXyy color)
Parameters
Type | Name | Description |
---|---|---|
CieXyy | color | The color to convert. |
Returns
Type | Description |
---|---|
Hsv | The Hsv |
ToHsv(in CieXyz)
Declaration
public Hsv ToHsv(in CieXyz color)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to convert. |
Returns
Type | Description |
---|---|
Hsv | The Hsv |
ToHsv(in Cmyk)
Declaration
public static Hsv ToHsv(in Cmyk color)
Parameters
Type | Name | Description |
---|---|---|
Cmyk | color | The color to convert. |
Returns
Type | Description |
---|---|
Hsv | The Hsv |
ToHsv(in Hsl)
Declaration
public static Hsv ToHsv(in Hsl color)
Parameters
Type | Name | Description |
---|---|---|
Hsl | color | The color to convert. |
Returns
Type | Description |
---|---|
Hsv | The Hsv |
ToHsv(in HunterLab)
Declaration
public Hsv ToHsv(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to convert. |
Returns
Type | Description |
---|---|
Hsv | The Hsv |
ToHsv(in LinearRgb)
Declaration
public static Hsv ToHsv(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to convert. |
Returns
Type | Description |
---|---|
Hsv | The Hsv |
ToHsv(Lms)
Declaration
public Hsv ToHsv(Lms color)
Parameters
Type | Name | Description |
---|---|---|
Lms | color | The color to convert. |
Returns
Type | Description |
---|---|
Hsv | The Hsv |
ToHsv(in Rgb)
Declaration
public static Hsv ToHsv(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to convert. |
Returns
Type | Description |
---|---|
Hsv | The Hsv |
ToHsv(in YCbCr)
Declaration
public Hsv ToHsv(in YCbCr color)
Parameters
Type | Name | Description |
---|---|---|
YCbCr | color | The color to convert. |
Returns
Type | Description |
---|---|
Hsv | The Hsv |
ToHunterLab(in CieLab)
Declaration
public HunterLab ToHunterLab(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to convert. |
Returns
Type | Description |
---|---|
HunterLab | The HunterLab |
ToHunterLab(in CieLch)
Declaration
public HunterLab ToHunterLab(in CieLch color)
Parameters
Type | Name | Description |
---|---|---|
CieLch | color | The color to convert. |
Returns
Type | Description |
---|---|
HunterLab | The HunterLab |
ToHunterLab(in CieLchuv)
Declaration
public HunterLab ToHunterLab(in CieLchuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLchuv | color | The color to convert. |
Returns
Type | Description |
---|---|
HunterLab | The HunterLab |
ToHunterLab(in CieLuv)
Declaration
public HunterLab ToHunterLab(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to convert. |
Returns
Type | Description |
---|---|
HunterLab | The HunterLab |
ToHunterLab(in CieXyy)
Declaration
public HunterLab ToHunterLab(in CieXyy color)
Parameters
Type | Name | Description |
---|---|---|
CieXyy | color | The color to convert. |
Returns
Type | Description |
---|---|
HunterLab | The HunterLab |
ToHunterLab(in CieXyz)
Declaration
public HunterLab ToHunterLab(in CieXyz color)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to convert. |
Returns
Type | Description |
---|---|
HunterLab | The HunterLab |
ToHunterLab(in Cmyk)
Declaration
public HunterLab ToHunterLab(in Cmyk color)
Parameters
Type | Name | Description |
---|---|---|
Cmyk | color | The color to convert. |
Returns
Type | Description |
---|---|
HunterLab | The HunterLab |
ToHunterLab(in Hsl)
Declaration
public HunterLab ToHunterLab(in Hsl color)
Parameters
Type | Name | Description |
---|---|---|
Hsl | color | The color to convert. |
Returns
Type | Description |
---|---|
HunterLab | The HunterLab |
ToHunterLab(in Hsv)
Declaration
public HunterLab ToHunterLab(in Hsv color)
Parameters
Type | Name | Description |
---|---|---|
Hsv | color | The color to convert. |
Returns
Type | Description |
---|---|
HunterLab | The HunterLab |
ToHunterLab(in LinearRgb)
Declaration
public HunterLab ToHunterLab(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to convert. |
Returns
Type | Description |
---|---|
HunterLab | The HunterLab |
ToHunterLab(in Lms)
Declaration
public HunterLab ToHunterLab(in Lms color)
Parameters
Type | Name | Description |
---|---|---|
Lms | color | The color to convert. |
Returns
Type | Description |
---|---|
HunterLab | The HunterLab |
ToHunterLab(in Rgb)
Declaration
public HunterLab ToHunterLab(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to convert. |
Returns
Type | Description |
---|---|
HunterLab | The HunterLab |
ToHunterLab(in YCbCr)
Declaration
public HunterLab ToHunterLab(in YCbCr color)
Parameters
Type | Name | Description |
---|---|---|
YCbCr | color | The color to convert. |
Returns
Type | Description |
---|---|
HunterLab | The HunterLab |
ToLinearRgb(in CieLab)
Declaration
public LinearRgb ToLinearRgb(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to convert. |
Returns
Type | Description |
---|---|
LinearRgb | The LinearRgb |
ToLinearRgb(in CieLch)
Declaration
public LinearRgb ToLinearRgb(in CieLch color)
Parameters
Type | Name | Description |
---|---|---|
CieLch | color | The color to convert. |
Returns
Type | Description |
---|---|
LinearRgb | The LinearRgb |
ToLinearRgb(in CieLchuv)
Declaration
public LinearRgb ToLinearRgb(in CieLchuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLchuv | color | The color to convert. |
Returns
Type | Description |
---|---|
LinearRgb | The LinearRgb |
ToLinearRgb(in CieLuv)
Declaration
public LinearRgb ToLinearRgb(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to convert. |
Returns
Type | Description |
---|---|
LinearRgb | The LinearRgb |
ToLinearRgb(in CieXyy)
Declaration
public LinearRgb ToLinearRgb(in CieXyy color)
Parameters
Type | Name | Description |
---|---|---|
CieXyy | color | The color to convert. |
Returns
Type | Description |
---|---|
LinearRgb | The LinearRgb |
ToLinearRgb(in CieXyz)
Declaration
public LinearRgb ToLinearRgb(in CieXyz color)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to convert. |
Returns
Type | Description |
---|---|
LinearRgb | The LinearRgb |
ToLinearRgb(in Cmyk)
Declaration
public static LinearRgb ToLinearRgb(in Cmyk color)
Parameters
Type | Name | Description |
---|---|---|
Cmyk | color | The color to convert. |
Returns
Type | Description |
---|---|
LinearRgb | The LinearRgb |
ToLinearRgb(in Hsl)
Declaration
public static LinearRgb ToLinearRgb(in Hsl color)
Parameters
Type | Name | Description |
---|---|---|
Hsl | color | The color to convert. |
Returns
Type | Description |
---|---|
LinearRgb | The LinearRgb |
ToLinearRgb(in Hsv)
Declaration
public static LinearRgb ToLinearRgb(in Hsv color)
Parameters
Type | Name | Description |
---|---|---|
Hsv | color | The color to convert. |
Returns
Type | Description |
---|---|
LinearRgb | The LinearRgb |
ToLinearRgb(in HunterLab)
Declaration
public LinearRgb ToLinearRgb(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to convert. |
Returns
Type | Description |
---|---|
LinearRgb | The LinearRgb |
ToLinearRgb(in Lms)
Declaration
public LinearRgb ToLinearRgb(in Lms color)
Parameters
Type | Name | Description |
---|---|---|
Lms | color | The color to convert. |
Returns
Type | Description |
---|---|
LinearRgb | The LinearRgb |
ToLinearRgb(in Rgb)
Declaration
public static LinearRgb ToLinearRgb(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to convert. |
Returns
Type | Description |
---|---|
LinearRgb | The LinearRgb |
ToLinearRgb(in YCbCr)
Declaration
public LinearRgb ToLinearRgb(in YCbCr color)
Parameters
Type | Name | Description |
---|---|---|
YCbCr | color | The color to convert. |
Returns
Type | Description |
---|---|
LinearRgb | The LinearRgb |
ToLms(in CieLab)
Declaration
public Lms ToLms(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to convert. |
Returns
Type | Description |
---|---|
Lms | The Lms |
ToLms(in CieLch)
Declaration
public Lms ToLms(in CieLch color)
Parameters
Type | Name | Description |
---|---|---|
CieLch | color | The color to convert. |
Returns
Type | Description |
---|---|
Lms | The Lms |
ToLms(in CieLchuv)
Declaration
public Lms ToLms(in CieLchuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLchuv | color | The color to convert. |
Returns
Type | Description |
---|---|
Lms | The Lms |
ToLms(in CieLuv)
Declaration
public Lms ToLms(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to convert. |
Returns
Type | Description |
---|---|
Lms | The Lms |
ToLms(in CieXyy)
Declaration
public Lms ToLms(in CieXyy color)
Parameters
Type | Name | Description |
---|---|---|
CieXyy | color | The color to convert. |
Returns
Type | Description |
---|---|
Lms | The Lms |
ToLms(in CieXyz)
Declaration
public Lms ToLms(in CieXyz color)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to convert. |
Returns
Type | Description |
---|---|
Lms | The Lms |
ToLms(in Cmyk)
Declaration
public Lms ToLms(in Cmyk color)
Parameters
Type | Name | Description |
---|---|---|
Cmyk | color | The color to convert. |
Returns
Type | Description |
---|---|
Lms | The Lms |
ToLms(in Hsl)
Declaration
public Lms ToLms(in Hsl color)
Parameters
Type | Name | Description |
---|---|---|
Hsl | color | The color to convert. |
Returns
Type | Description |
---|---|
Lms | The Lms |
ToLms(in Hsv)
Declaration
public Lms ToLms(in Hsv color)
Parameters
Type | Name | Description |
---|---|---|
Hsv | color | The color to convert. |
Returns
Type | Description |
---|---|
Lms | The Lms |
ToLms(in HunterLab)
Declaration
public Lms ToLms(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to convert. |
Returns
Type | Description |
---|---|
Lms | The Lms |
ToLms(in LinearRgb)
Declaration
public Lms ToLms(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to convert. |
Returns
Type | Description |
---|---|
Lms | The Lms |
ToLms(in Rgb)
Declaration
public Lms ToLms(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to convert. |
Returns
Type | Description |
---|---|
Lms | The Lms |
ToLms(in YCbCr)
Declaration
public Lms ToLms(in YCbCr color)
Parameters
Type | Name | Description |
---|---|---|
YCbCr | color | The color to convert. |
Returns
Type | Description |
---|---|
Lms | The Lms |
ToRgb(in CieLab)
Declaration
public Rgb ToRgb(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to convert. |
Returns
Type | Description |
---|---|
Rgb | The Rgb |
ToRgb(in CieLch)
Declaration
public Rgb ToRgb(in CieLch color)
Parameters
Type | Name | Description |
---|---|---|
CieLch | color | The color to convert. |
Returns
Type | Description |
---|---|
Rgb | The Rgb |
ToRgb(in CieLchuv)
Declaration
public Rgb ToRgb(in CieLchuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLchuv | color | The color to convert. |
Returns
Type | Description |
---|---|
Rgb | The Rgb |
ToRgb(in CieLuv)
Declaration
public Rgb ToRgb(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to convert. |
Returns
Type | Description |
---|---|
Rgb | The Rgb |
ToRgb(in CieXyy)
Declaration
public Rgb ToRgb(in CieXyy color)
Parameters
Type | Name | Description |
---|---|---|
CieXyy | color | The color to convert. |
Returns
Type | Description |
---|---|
Rgb | The Rgb |
ToRgb(in CieXyz)
Declaration
public Rgb ToRgb(in CieXyz color)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to convert. |
Returns
Type | Description |
---|---|
Rgb | The Rgb |
ToRgb(in Cmyk)
Declaration
public static Rgb ToRgb(in Cmyk color)
Parameters
Type | Name | Description |
---|---|---|
Cmyk | color | The color to convert. |
Returns
Type | Description |
---|---|
Rgb | The Rgb |
ToRgb(in Hsl)
Declaration
public static Rgb ToRgb(in Hsl color)
Parameters
Type | Name | Description |
---|---|---|
Hsl | color | The color to convert. |
Returns
Type | Description |
---|---|
Rgb | The Rgb |
ToRgb(in Hsv)
Declaration
public static Rgb ToRgb(in Hsv color)
Parameters
Type | Name | Description |
---|---|---|
Hsv | color | The color to convert. |
Returns
Type | Description |
---|---|
Rgb | The Rgb |
ToRgb(in HunterLab)
Declaration
public Rgb ToRgb(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to convert. |
Returns
Type | Description |
---|---|
Rgb | The Rgb |
ToRgb(in LinearRgb)
Declaration
public static Rgb ToRgb(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to convert. |
Returns
Type | Description |
---|---|
Rgb | The Rgb |
ToRgb(in Lms)
Declaration
public Rgb ToRgb(in Lms color)
Parameters
Type | Name | Description |
---|---|---|
Lms | color | The color to convert. |
Returns
Type | Description |
---|---|
Rgb | The Rgb |
ToRgb(in YCbCr)
Declaration
public Rgb ToRgb(in YCbCr color)
Parameters
Type | Name | Description |
---|---|---|
YCbCr | color | The color to convert. |
Returns
Type | Description |
---|---|
Rgb | The Rgb |
ToYCbCr(in CieLab)
Declaration
public YCbCr ToYCbCr(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to convert. |
Returns
Type | Description |
---|---|
YCbCr | The YCbCr |
ToYCbCr(in CieLch)
Declaration
public YCbCr ToYCbCr(in CieLch color)
Parameters
Type | Name | Description |
---|---|---|
CieLch | color | The color to convert. |
Returns
Type | Description |
---|---|
YCbCr | The YCbCr |
ToYCbCr(in CieLuv)
Declaration
public YCbCr ToYCbCr(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to convert. |
Returns
Type | Description |
---|---|
YCbCr | The YCbCr |
ToYCbCr(in CieXyy)
Declaration
public YCbCr ToYCbCr(in CieXyy color)
Parameters
Type | Name | Description |
---|---|---|
CieXyy | color | The color to convert. |
Returns
Type | Description |
---|---|
YCbCr | The YCbCr |
ToYCbCr(in CieXyz)
Declaration
public YCbCr ToYCbCr(in CieXyz color)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to convert. |
Returns
Type | Description |
---|---|
YCbCr | The YCbCr |
ToYCbCr(in Cmyk)
Declaration
public static YCbCr ToYCbCr(in Cmyk color)
Parameters
Type | Name | Description |
---|---|---|
Cmyk | color | The color to convert. |
Returns
Type | Description |
---|---|
YCbCr | The YCbCr |
ToYCbCr(in Hsl)
Declaration
public static YCbCr ToYCbCr(in Hsl color)
Parameters
Type | Name | Description |
---|---|---|
Hsl | color | The color to convert. |
Returns
Type | Description |
---|---|
YCbCr | The YCbCr |
ToYCbCr(in Hsv)
Declaration
public static YCbCr ToYCbCr(in Hsv color)
Parameters
Type | Name | Description |
---|---|---|
Hsv | color | The color to convert. |
Returns
Type | Description |
---|---|
YCbCr | The YCbCr |
ToYCbCr(in HunterLab)
Declaration
public YCbCr ToYCbCr(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to convert. |
Returns
Type | Description |
---|---|
YCbCr | The YCbCr |
ToYCbCr(in LinearRgb)
Declaration
public static YCbCr ToYCbCr(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to convert. |
Returns
Type | Description |
---|---|
YCbCr | The YCbCr |
ToYCbCr(in Lms)
Declaration
public YCbCr ToYCbCr(in Lms color)
Parameters
Type | Name | Description |
---|---|---|
Lms | color | The color to convert. |
Returns
Type | Description |
---|---|
YCbCr | The YCbCr |
ToYCbCr(in Rgb)
Declaration
public static YCbCr ToYCbCr(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to convert. |
Returns
Type | Description |
---|---|
YCbCr | The YCbCr |