Class LCompanding
Implements L* companding.
Inherited Members
Namespace: SixLabors.ImageSharp.ColorSpaces.Companding
Assembly: SixLabors.ImageSharp.dll
Syntax
public static class LCompandingRemarks
For more info see: http://www.brucelindbloom.com/index.html?Eqn_RGB_to_XYZ.html http://www.brucelindbloom.com/index.html?Eqn_XYZ_to_RGB.html
Methods
| Improve this Doc View SourceCompress(Single)
Compresses an uncompanded channel (linear) to its nonlinear equivalent.
Declaration
public static float Compress(float channel)Parameters
| Type | Name | Description | 
|---|---|---|
| Single | channel | The channel value | 
Returns
| Type | Description | 
|---|---|
| Single | The Single representing the nonlinear channel value. | 
Expand(Single)
Expands a companded channel to its linear equivalent with respect to the energy.
Declaration
public static float Expand(float channel)Parameters
| Type | Name | Description | 
|---|---|---|
| Single | channel | The channel value. | 
Returns
| Type | Description | 
|---|---|
| Single | The Single representing the linear channel value. |