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
| Improve this Doc View SourceColorSpaceConverter()
Initializes a new instance of the Color
Declaration
public ColorSpaceConverter()
ColorSpaceConverter(ColorSpaceConverterOptions)
Initializes a new instance of the Color
Declaration
public ColorSpaceConverter(ColorSpaceConverterOptions options)
Parameters
Type | Name | Description |
---|---|---|
ColorSpaceConverterOptions | options | The configuration options. |
Methods
| Improve this Doc View SourceAdapt(in CieLab)
Adapts Cie
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 Cie
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 Cie
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 Cie
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 Cie
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 Cie
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 Hunter
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 Linear
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 Target
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<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<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<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<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<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<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<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<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<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<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<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<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 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<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<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<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 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<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<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<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 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 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 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 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 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<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<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<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 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 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 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 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 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<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<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<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 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 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 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 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 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<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<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<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<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<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<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 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 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 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 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 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<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<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<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<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<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<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 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 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 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 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 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<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<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<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
| Improve this Doc View SourceToCieLab(in CieLchuv)
Declaration
public CieLab ToCieLab(in CieLchuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLchuv | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLab(in CieLuv)
Declaration
public CieLab ToCieLab(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLab(in CieXyy)
Declaration
public CieLab ToCieLab(in CieXyy color)
Parameters
Type | Name | Description |
---|---|---|
CieXyy | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLab(in CieXyz)
Declaration
public CieLab ToCieLab(in CieXyz color)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLab(in Cmyk)
Declaration
public CieLab ToCieLab(in Cmyk color)
Parameters
Type | Name | Description |
---|---|---|
Cmyk | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLab(in Hsl)
Declaration
public CieLab ToCieLab(in Hsl color)
Parameters
Type | Name | Description |
---|---|---|
Hsl | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLab(in Hsv)
Declaration
public CieLab ToCieLab(in Hsv color)
Parameters
Type | Name | Description |
---|---|---|
Hsv | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLab(in HunterLab)
Declaration
public CieLab ToCieLab(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLab(in LinearRgb)
Declaration
public CieLab ToCieLab(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLab(in Lms)
Declaration
public CieLab ToCieLab(in Lms color)
Parameters
Type | Name | Description |
---|---|---|
Lms | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLab(in Rgb)
Declaration
public CieLab ToCieLab(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLab(in YCbCr)
Declaration
public CieLab ToCieLab(in YCbCr color)
Parameters
Type | Name | Description |
---|---|---|
YCbCr | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLch(in CieLab)
Declaration
public CieLch ToCieLch(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLch(in CieLchuv)
Declaration
public CieLch ToCieLch(in CieLchuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLchuv | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLch(in CieLuv)
Declaration
public CieLch ToCieLch(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLch(in CieXyy)
Declaration
public CieLch ToCieLch(in CieXyy color)
Parameters
Type | Name | Description |
---|---|---|
CieXyy | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLch(in CieXyz)
Declaration
public CieLch ToCieLch(in CieXyz color)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLch(in Cmyk)
Declaration
public CieLch ToCieLch(in Cmyk color)
Parameters
Type | Name | Description |
---|---|---|
Cmyk | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLch(in Hsl)
Declaration
public CieLch ToCieLch(in Hsl color)
Parameters
Type | Name | Description |
---|---|---|
Hsl | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLch(in Hsv)
Declaration
public CieLch ToCieLch(in Hsv color)
Parameters
Type | Name | Description |
---|---|---|
Hsv | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLch(in HunterLab)
Declaration
public CieLch ToCieLch(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLch(in LinearRgb)
Declaration
public CieLch ToCieLch(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLch(in Lms)
Declaration
public CieLch ToCieLch(in Lms color)
Parameters
Type | Name | Description |
---|---|---|
Lms | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLch(in Rgb)
Declaration
public CieLch ToCieLch(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLch(in YCbCr)
Declaration
public CieLch ToCieLch(in YCbCr color)
Parameters
Type | Name | Description |
---|---|---|
YCbCr | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLchuv(in CieLab)
Declaration
public CieLchuv ToCieLchuv(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLchuv(in CieLch)
Declaration
public CieLchuv ToCieLchuv(in CieLch color)
Parameters
Type | Name | Description |
---|---|---|
CieLch | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLchuv(in CieLuv)
Declaration
public CieLchuv ToCieLchuv(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLchuv(in CieXyy)
Declaration
public CieLchuv ToCieLchuv(in CieXyy color)
Parameters
Type | Name | Description |
---|---|---|
CieXyy | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLchuv(in CieXyz)
Declaration
public CieLchuv ToCieLchuv(in CieXyz color)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLchuv(in Cmyk)
Declaration
public CieLchuv ToCieLchuv(in Cmyk color)
Parameters
Type | Name | Description |
---|---|---|
Cmyk | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLchuv(in Hsl)
Declaration
public CieLchuv ToCieLchuv(in Hsl color)
Parameters
Type | Name | Description |
---|---|---|
Hsl | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLchuv(in Hsv)
Declaration
public CieLchuv ToCieLchuv(in Hsv color)
Parameters
Type | Name | Description |
---|---|---|
Hsv | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLchuv(in HunterLab)
Declaration
public CieLchuv ToCieLchuv(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLchuv(in LinearRgb)
Declaration
public CieLchuv ToCieLchuv(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLchuv(in Lms)
Declaration
public CieLchuv ToCieLchuv(in Lms color)
Parameters
Type | Name | Description |
---|---|---|
Lms | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLchuv(in Rgb)
Declaration
public CieLchuv ToCieLchuv(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLchuv(in YCbCr)
Declaration
public CieLchuv ToCieLchuv(in YCbCr color)
Parameters
Type | Name | Description |
---|---|---|
YCbCr | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLuv(in CieLab)
Declaration
public CieLuv ToCieLuv(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLuv(in CieLch)
Declaration
public CieLuv ToCieLuv(in CieLch color)
Parameters
Type | Name | Description |
---|---|---|
CieLch | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLuv(in CieLchuv)
Declaration
public CieLuv ToCieLuv(in CieLchuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLchuv | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLuv(in CieXyy)
Declaration
public CieLuv ToCieLuv(in CieXyy color)
Parameters
Type | Name | Description |
---|---|---|
CieXyy | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLuv(in CieXyz)
Declaration
public CieLuv ToCieLuv(in CieXyz color)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLuv(in Cmyk)
Declaration
public CieLuv ToCieLuv(in Cmyk color)
Parameters
Type | Name | Description |
---|---|---|
Cmyk | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLuv(in Hsl)
Declaration
public CieLuv ToCieLuv(in Hsl color)
Parameters
Type | Name | Description |
---|---|---|
Hsl | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLuv(in Hsv)
Declaration
public CieLuv ToCieLuv(in Hsv color)
Parameters
Type | Name | Description |
---|---|---|
Hsv | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLuv(in HunterLab)
Declaration
public CieLuv ToCieLuv(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLuv(in LinearRgb)
Declaration
public CieLuv ToCieLuv(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLuv(in Lms)
Declaration
public CieLuv ToCieLuv(in Lms color)
Parameters
Type | Name | Description |
---|---|---|
Lms | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLuv(in Rgb)
Declaration
public CieLuv ToCieLuv(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieLuv(in YCbCr)
Declaration
public CieLuv ToCieLuv(in YCbCr color)
Parameters
Type | Name | Description |
---|---|---|
YCbCr | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieXyy(in CieLab)
Declaration
public CieXyy ToCieXyy(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieXyy(in CieLch)
Declaration
public CieXyy ToCieXyy(in CieLch color)
Parameters
Type | Name | Description |
---|---|---|
CieLch | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieXyy(in CieLchuv)
Declaration
public CieXyy ToCieXyy(in CieLchuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLchuv | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieXyy(in CieLuv)
Declaration
public CieXyy ToCieXyy(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieXyy(in CieXyz)
Declaration
public CieXyy ToCieXyy(in CieXyz color)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieXyy(in Cmyk)
Declaration
public CieXyy ToCieXyy(in Cmyk color)
Parameters
Type | Name | Description |
---|---|---|
Cmyk | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieXyy(Hsl)
Declaration
public CieXyy ToCieXyy(Hsl color)
Parameters
Type | Name | Description |
---|---|---|
Hsl | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieXyy(in Hsv)
Declaration
public CieXyy ToCieXyy(in Hsv color)
Parameters
Type | Name | Description |
---|---|---|
Hsv | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieXyy(in HunterLab)
Declaration
public CieXyy ToCieXyy(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieXyy(in LinearRgb)
Declaration
public CieXyy ToCieXyy(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieXyy(in Lms)
Declaration
public CieXyy ToCieXyy(in Lms color)
Parameters
Type | Name | Description |
---|---|---|
Lms | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieXyy(in Rgb)
Declaration
public CieXyy ToCieXyy(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieXyy(in YCbCr)
Declaration
public CieXyy ToCieXyy(in YCbCr color)
Parameters
Type | Name | Description |
---|---|---|
YCbCr | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieXyz(in CieLab)
Declaration
public CieXyz ToCieXyz(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieXyz(in CieLch)
Declaration
public CieXyz ToCieXyz(in CieLch color)
Parameters
Type | Name | Description |
---|---|---|
CieLch | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieXyz(in CieLchuv)
Declaration
public CieXyz ToCieXyz(in CieLchuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLchuv | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieXyz(in CieLuv)
Declaration
public CieXyz ToCieXyz(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieXyz(in CieXyy)
Declaration
public CieXyz ToCieXyz(in CieXyy color)
Parameters
Type | Name | Description |
---|---|---|
CieXyy | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieXyz(in Cmyk)
Declaration
public CieXyz ToCieXyz(in Cmyk color)
Parameters
Type | Name | Description |
---|---|---|
Cmyk | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieXyz(in Hsl)
Declaration
public CieXyz ToCieXyz(in Hsl color)
Parameters
Type | Name | Description |
---|---|---|
Hsl | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieXyz(in Hsv)
Declaration
public CieXyz ToCieXyz(in Hsv color)
Parameters
Type | Name | Description |
---|---|---|
Hsv | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieXyz(in HunterLab)
Declaration
public CieXyz ToCieXyz(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieXyz(in LinearRgb)
Declaration
public CieXyz ToCieXyz(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieXyz(in Lms)
Declaration
public CieXyz ToCieXyz(in Lms color)
Parameters
Type | Name | Description |
---|---|---|
Lms | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieXyz(in Rgb)
Declaration
public CieXyz ToCieXyz(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to convert. |
Returns
| Improve this Doc View SourceToCieXyz(in YCbCr)
Declaration
public CieXyz ToCieXyz(in YCbCr color)
Parameters
Type | Name | Description |
---|---|---|
YCbCr | color | The color to convert. |
Returns
| Improve this Doc View SourceToCmyk(in CieLab)
Declaration
public Cmyk ToCmyk(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to convert. |
Returns
| Improve this Doc View SourceToCmyk(in CieLch)
Declaration
public Cmyk ToCmyk(in CieLch color)
Parameters
Type | Name | Description |
---|---|---|
CieLch | color | The color to convert. |
Returns
| Improve this Doc View SourceToCmyk(in CieLchuv)
Declaration
public Cmyk ToCmyk(in CieLchuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLchuv | color | The color to convert. |
Returns
| Improve this Doc View SourceToCmyk(in CieLuv)
Declaration
public Cmyk ToCmyk(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to convert. |
Returns
| Improve this Doc View SourceToCmyk(in CieXyy)
Declaration
public Cmyk ToCmyk(in CieXyy color)
Parameters
Type | Name | Description |
---|---|---|
CieXyy | color | The color to convert. |
Returns
| Improve this Doc View SourceToCmyk(in CieXyz)
Declaration
public Cmyk ToCmyk(in CieXyz color)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to convert. |
Returns
| Improve this Doc View SourceToCmyk(in Hsl)
Declaration
public Cmyk ToCmyk(in Hsl color)
Parameters
Type | Name | Description |
---|---|---|
Hsl | color | The color to convert. |
Returns
| Improve this Doc View SourceToCmyk(in Hsv)
Declaration
public Cmyk ToCmyk(in Hsv color)
Parameters
Type | Name | Description |
---|---|---|
Hsv | color | The color to convert. |
Returns
| Improve this Doc View SourceToCmyk(in HunterLab)
Declaration
public Cmyk ToCmyk(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to convert. |
Returns
| Improve this Doc View SourceToCmyk(in LinearRgb)
Declaration
public Cmyk ToCmyk(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to convert. |
Returns
| Improve this Doc View SourceToCmyk(in Lms)
Declaration
public Cmyk ToCmyk(in Lms color)
Parameters
Type | Name | Description |
---|---|---|
Lms | color | The color to convert. |
Returns
| Improve this Doc View SourceToCmyk(in Rgb)
Declaration
public Cmyk ToCmyk(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to convert. |
Returns
| Improve this Doc View SourceToCmyk(in YCbCr)
Declaration
public Cmyk ToCmyk(in YCbCr color)
Parameters
Type | Name | Description |
---|---|---|
YCbCr | color | The color to convert. |
Returns
| Improve this Doc View SourceToHsl(in CieLab)
Declaration
public Hsl ToHsl(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to convert. |
Returns
| Improve this Doc View SourceToHsl(in CieLch)
Declaration
public Hsl ToHsl(in CieLch color)
Parameters
Type | Name | Description |
---|---|---|
CieLch | color | The color to convert. |
Returns
| Improve this Doc View SourceToHsl(in CieLchuv)
Declaration
public Hsl ToHsl(in CieLchuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLchuv | color | The color to convert. |
Returns
| Improve this Doc View SourceToHsl(in CieLuv)
Declaration
public Hsl ToHsl(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to convert. |
Returns
| Improve this Doc View SourceToHsl(in CieXyy)
Declaration
public Hsl ToHsl(in CieXyy color)
Parameters
Type | Name | Description |
---|---|---|
CieXyy | color | The color to convert. |
Returns
| Improve this Doc View SourceToHsl(in CieXyz)
Declaration
public Hsl ToHsl(in CieXyz color)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to convert. |
Returns
| Improve this Doc View SourceToHsl(in Cmyk)
Declaration
public Hsl ToHsl(in Cmyk color)
Parameters
Type | Name | Description |
---|---|---|
Cmyk | color | The color to convert. |
Returns
| Improve this Doc View SourceToHsl(in Hsv)
Declaration
public Hsl ToHsl(in Hsv color)
Parameters
Type | Name | Description |
---|---|---|
Hsv | color | The color to convert. |
Returns
| Improve this Doc View SourceToHsl(in HunterLab)
Declaration
public Hsl ToHsl(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to convert. |
Returns
| Improve this Doc View SourceToHsl(in LinearRgb)
Declaration
public Hsl ToHsl(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to convert. |
Returns
| Improve this Doc View SourceToHsl(Lms)
Declaration
public Hsl ToHsl(Lms color)
Parameters
Type | Name | Description |
---|---|---|
Lms | color | The color to convert. |
Returns
| Improve this Doc View SourceToHsl(in Rgb)
Declaration
public Hsl ToHsl(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to convert. |
Returns
| Improve this Doc View SourceToHsl(in YCbCr)
Declaration
public Hsl ToHsl(in YCbCr color)
Parameters
Type | Name | Description |
---|---|---|
YCbCr | color | The color to convert. |
Returns
| Improve this Doc View SourceToHsv(in CieLab)
Declaration
public Hsv ToHsv(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to convert. |
Returns
| Improve this Doc View SourceToHsv(in CieLch)
Declaration
public Hsv ToHsv(in CieLch color)
Parameters
Type | Name | Description |
---|---|---|
CieLch | color | The color to convert. |
Returns
| Improve this Doc View SourceToHsv(in CieLchuv)
Declaration
public Hsv ToHsv(in CieLchuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLchuv | color | The color to convert. |
Returns
| Improve this Doc View SourceToHsv(in CieLuv)
Declaration
public Hsv ToHsv(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to convert. |
Returns
| Improve this Doc View SourceToHsv(in CieXyy)
Declaration
public Hsv ToHsv(in CieXyy color)
Parameters
Type | Name | Description |
---|---|---|
CieXyy | color | The color to convert. |
Returns
| Improve this Doc View SourceToHsv(in CieXyz)
Declaration
public Hsv ToHsv(in CieXyz color)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to convert. |
Returns
| Improve this Doc View SourceToHsv(in Cmyk)
Declaration
public Hsv ToHsv(in Cmyk color)
Parameters
Type | Name | Description |
---|---|---|
Cmyk | color | The color to convert. |
Returns
| Improve this Doc View SourceToHsv(in Hsl)
Declaration
public Hsv ToHsv(in Hsl color)
Parameters
Type | Name | Description |
---|---|---|
Hsl | color | The color to convert. |
Returns
| Improve this Doc View SourceToHsv(in HunterLab)
Declaration
public Hsv ToHsv(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to convert. |
Returns
| Improve this Doc View SourceToHsv(in LinearRgb)
Declaration
public Hsv ToHsv(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to convert. |
Returns
| Improve this Doc View SourceToHsv(Lms)
Declaration
public Hsv ToHsv(Lms color)
Parameters
Type | Name | Description |
---|---|---|
Lms | color | The color to convert. |
Returns
| Improve this Doc View SourceToHsv(in Rgb)
Declaration
public Hsv ToHsv(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to convert. |
Returns
| Improve this Doc View SourceToHsv(in YCbCr)
Declaration
public Hsv ToHsv(in YCbCr color)
Parameters
Type | Name | Description |
---|---|---|
YCbCr | color | The color to convert. |
Returns
| Improve this Doc View SourceToHunterLab(in CieLab)
Declaration
public HunterLab ToHunterLab(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to convert. |
Returns
| Improve this Doc View SourceToHunterLab(in CieLch)
Declaration
public HunterLab ToHunterLab(in CieLch color)
Parameters
Type | Name | Description |
---|---|---|
CieLch | color | The color to convert. |
Returns
| Improve this Doc View SourceToHunterLab(in CieLchuv)
Declaration
public HunterLab ToHunterLab(in CieLchuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLchuv | color | The color to convert. |
Returns
| Improve this Doc View SourceToHunterLab(in CieLuv)
Declaration
public HunterLab ToHunterLab(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to convert. |
Returns
| Improve this Doc View SourceToHunterLab(in CieXyy)
Declaration
public HunterLab ToHunterLab(in CieXyy color)
Parameters
Type | Name | Description |
---|---|---|
CieXyy | color | The color to convert. |
Returns
| Improve this Doc View SourceToHunterLab(in CieXyz)
Declaration
public HunterLab ToHunterLab(in CieXyz color)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to convert. |
Returns
| Improve this Doc View SourceToHunterLab(in Cmyk)
Declaration
public HunterLab ToHunterLab(in Cmyk color)
Parameters
Type | Name | Description |
---|---|---|
Cmyk | color | The color to convert. |
Returns
| Improve this Doc View SourceToHunterLab(in Hsl)
Declaration
public HunterLab ToHunterLab(in Hsl color)
Parameters
Type | Name | Description |
---|---|---|
Hsl | color | The color to convert. |
Returns
| Improve this Doc View SourceToHunterLab(in Hsv)
Declaration
public HunterLab ToHunterLab(in Hsv color)
Parameters
Type | Name | Description |
---|---|---|
Hsv | color | The color to convert. |
Returns
| Improve this Doc View SourceToHunterLab(in LinearRgb)
Declaration
public HunterLab ToHunterLab(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to convert. |
Returns
| Improve this Doc View SourceToHunterLab(in Lms)
Declaration
public HunterLab ToHunterLab(in Lms color)
Parameters
Type | Name | Description |
---|---|---|
Lms | color | The color to convert. |
Returns
| Improve this Doc View SourceToHunterLab(in Rgb)
Declaration
public HunterLab ToHunterLab(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to convert. |
Returns
| Improve this Doc View SourceToHunterLab(in YCbCr)
Declaration
public HunterLab ToHunterLab(in YCbCr color)
Parameters
Type | Name | Description |
---|---|---|
YCbCr | color | The color to convert. |
Returns
| Improve this Doc View SourceToLinearRgb(in CieLab)
Declaration
public LinearRgb ToLinearRgb(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to convert. |
Returns
| Improve this Doc View SourceToLinearRgb(in CieLch)
Declaration
public LinearRgb ToLinearRgb(in CieLch color)
Parameters
Type | Name | Description |
---|---|---|
CieLch | color | The color to convert. |
Returns
| Improve this Doc View SourceToLinearRgb(in CieLchuv)
Declaration
public LinearRgb ToLinearRgb(in CieLchuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLchuv | color | The color to convert. |
Returns
| Improve this Doc View SourceToLinearRgb(in CieLuv)
Declaration
public LinearRgb ToLinearRgb(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to convert. |
Returns
| Improve this Doc View SourceToLinearRgb(in CieXyy)
Declaration
public LinearRgb ToLinearRgb(in CieXyy color)
Parameters
Type | Name | Description |
---|---|---|
CieXyy | color | The color to convert. |
Returns
| Improve this Doc View SourceToLinearRgb(in CieXyz)
Declaration
public LinearRgb ToLinearRgb(in CieXyz color)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to convert. |
Returns
| Improve this Doc View SourceToLinearRgb(in Cmyk)
Declaration
public LinearRgb ToLinearRgb(in Cmyk color)
Parameters
Type | Name | Description |
---|---|---|
Cmyk | color | The color to convert. |
Returns
| Improve this Doc View SourceToLinearRgb(in Hsl)
Declaration
public LinearRgb ToLinearRgb(in Hsl color)
Parameters
Type | Name | Description |
---|---|---|
Hsl | color | The color to convert. |
Returns
| Improve this Doc View SourceToLinearRgb(in Hsv)
Declaration
public LinearRgb ToLinearRgb(in Hsv color)
Parameters
Type | Name | Description |
---|---|---|
Hsv | color | The color to convert. |
Returns
| Improve this Doc View SourceToLinearRgb(in HunterLab)
Declaration
public LinearRgb ToLinearRgb(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to convert. |
Returns
| Improve this Doc View SourceToLinearRgb(in Lms)
Declaration
public LinearRgb ToLinearRgb(in Lms color)
Parameters
Type | Name | Description |
---|---|---|
Lms | color | The color to convert. |
Returns
| Improve this Doc View SourceToLinearRgb(in Rgb)
Declaration
public LinearRgb ToLinearRgb(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to convert. |
Returns
| Improve this Doc View SourceToLinearRgb(in YCbCr)
Declaration
public LinearRgb ToLinearRgb(in YCbCr color)
Parameters
Type | Name | Description |
---|---|---|
YCbCr | color | The color to convert. |
Returns
| Improve this Doc View SourceToLms(in CieLab)
Declaration
public Lms ToLms(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to convert. |
Returns
| Improve this Doc View SourceToLms(in CieLch)
Declaration
public Lms ToLms(in CieLch color)
Parameters
Type | Name | Description |
---|---|---|
CieLch | color | The color to convert. |
Returns
| Improve this Doc View SourceToLms(in CieLchuv)
Declaration
public Lms ToLms(in CieLchuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLchuv | color | The color to convert. |
Returns
| Improve this Doc View SourceToLms(in CieLuv)
Declaration
public Lms ToLms(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to convert. |
Returns
| Improve this Doc View SourceToLms(in CieXyy)
Declaration
public Lms ToLms(in CieXyy color)
Parameters
Type | Name | Description |
---|---|---|
CieXyy | color | The color to convert. |
Returns
| Improve this Doc View SourceToLms(in CieXyz)
Declaration
public Lms ToLms(in CieXyz color)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to convert. |
Returns
| Improve this Doc View SourceToLms(in Cmyk)
Declaration
public Lms ToLms(in Cmyk color)
Parameters
Type | Name | Description |
---|---|---|
Cmyk | color | The color to convert. |
Returns
| Improve this Doc View SourceToLms(in Hsl)
Declaration
public Lms ToLms(in Hsl color)
Parameters
Type | Name | Description |
---|---|---|
Hsl | color | The color to convert. |
Returns
| Improve this Doc View SourceToLms(in Hsv)
Declaration
public Lms ToLms(in Hsv color)
Parameters
Type | Name | Description |
---|---|---|
Hsv | color | The color to convert. |
Returns
| Improve this Doc View SourceToLms(in HunterLab)
Declaration
public Lms ToLms(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to convert. |
Returns
| Improve this Doc View SourceToLms(in LinearRgb)
Declaration
public Lms ToLms(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to convert. |
Returns
| Improve this Doc View SourceToLms(in Rgb)
Declaration
public Lms ToLms(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to convert. |
Returns
| Improve this Doc View SourceToLms(in YCbCr)
Declaration
public Lms ToLms(in YCbCr color)
Parameters
Type | Name | Description |
---|---|---|
YCbCr | color | The color to convert. |
Returns
| Improve this Doc View SourceToRgb(in CieLab)
Declaration
public Rgb ToRgb(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to convert. |
Returns
| Improve this Doc View SourceToRgb(in CieLch)
Declaration
public Rgb ToRgb(in CieLch color)
Parameters
Type | Name | Description |
---|---|---|
CieLch | color | The color to convert. |
Returns
| Improve this Doc View SourceToRgb(in CieLchuv)
Declaration
public Rgb ToRgb(in CieLchuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLchuv | color | The color to convert. |
Returns
| Improve this Doc View SourceToRgb(in CieLuv)
Declaration
public Rgb ToRgb(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to convert. |
Returns
| Improve this Doc View SourceToRgb(in CieXyy)
Declaration
public Rgb ToRgb(in CieXyy color)
Parameters
Type | Name | Description |
---|---|---|
CieXyy | color | The color to convert. |
Returns
| Improve this Doc View SourceToRgb(in CieXyz)
Declaration
public Rgb ToRgb(in CieXyz color)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to convert. |
Returns
| Improve this Doc View SourceToRgb(in Cmyk)
Declaration
public Rgb ToRgb(in Cmyk color)
Parameters
Type | Name | Description |
---|---|---|
Cmyk | color | The color to convert. |
Returns
| Improve this Doc View SourceToRgb(in Hsl)
Declaration
public Rgb ToRgb(in Hsl color)
Parameters
Type | Name | Description |
---|---|---|
Hsl | color | The color to convert. |
Returns
| Improve this Doc View SourceToRgb(in Hsv)
Declaration
public Rgb ToRgb(in Hsv color)
Parameters
Type | Name | Description |
---|---|---|
Hsv | color | The color to convert. |
Returns
| Improve this Doc View SourceToRgb(in HunterLab)
Declaration
public Rgb ToRgb(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to convert. |
Returns
| Improve this Doc View SourceToRgb(in LinearRgb)
Declaration
public Rgb ToRgb(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to convert. |
Returns
| Improve this Doc View SourceToRgb(in Lms)
Declaration
public Rgb ToRgb(in Lms color)
Parameters
Type | Name | Description |
---|---|---|
Lms | color | The color to convert. |
Returns
| Improve this Doc View SourceToRgb(in YCbCr)
Declaration
public Rgb ToRgb(in YCbCr color)
Parameters
Type | Name | Description |
---|---|---|
YCbCr | color | The color to convert. |
Returns
| Improve this Doc View SourceToYCbCr(in CieLab)
Declaration
public YCbCr ToYCbCr(in CieLab color)
Parameters
Type | Name | Description |
---|---|---|
CieLab | color | The color to convert. |
Returns
| Improve this Doc View SourceToYCbCr(in CieLch)
Declaration
public YCbCr ToYCbCr(in CieLch color)
Parameters
Type | Name | Description |
---|---|---|
CieLch | color | The color to convert. |
Returns
| Improve this Doc View SourceToYCbCr(in CieLuv)
Declaration
public YCbCr ToYCbCr(in CieLuv color)
Parameters
Type | Name | Description |
---|---|---|
CieLuv | color | The color to convert. |
Returns
| Improve this Doc View SourceToYCbCr(in CieXyy)
Declaration
public YCbCr ToYCbCr(in CieXyy color)
Parameters
Type | Name | Description |
---|---|---|
CieXyy | color | The color to convert. |
Returns
| Improve this Doc View SourceToYCbCr(in CieXyz)
Declaration
public YCbCr ToYCbCr(in CieXyz color)
Parameters
Type | Name | Description |
---|---|---|
CieXyz | color | The color to convert. |
Returns
| Improve this Doc View SourceToYCbCr(in Cmyk)
Declaration
public YCbCr ToYCbCr(in Cmyk color)
Parameters
Type | Name | Description |
---|---|---|
Cmyk | color | The color to convert. |
Returns
| Improve this Doc View SourceToYCbCr(in Hsl)
Declaration
public YCbCr ToYCbCr(in Hsl color)
Parameters
Type | Name | Description |
---|---|---|
Hsl | color | The color to convert. |
Returns
| Improve this Doc View SourceToYCbCr(in Hsv)
Declaration
public YCbCr ToYCbCr(in Hsv color)
Parameters
Type | Name | Description |
---|---|---|
Hsv | color | The color to convert. |
Returns
| Improve this Doc View SourceToYCbCr(in HunterLab)
Declaration
public YCbCr ToYCbCr(in HunterLab color)
Parameters
Type | Name | Description |
---|---|---|
HunterLab | color | The color to convert. |
Returns
| Improve this Doc View SourceToYCbCr(in LinearRgb)
Declaration
public YCbCr ToYCbCr(in LinearRgb color)
Parameters
Type | Name | Description |
---|---|---|
LinearRgb | color | The color to convert. |
Returns
| Improve this Doc View SourceToYCbCr(in Lms)
Declaration
public YCbCr ToYCbCr(in Lms color)
Parameters
Type | Name | Description |
---|---|---|
Lms | color | The color to convert. |
Returns
| Improve this Doc View SourceToYCbCr(in Rgb)
Declaration
public YCbCr ToYCbCr(in Rgb color)
Parameters
Type | Name | Description |
---|---|---|
Rgb | color | The color to convert. |