SKColorSpace.ToXyzD50 Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ToXyzD50() |
Obsolete.
Describes color space gamut as a transformation to XYZ D50. |
ToXyzD50(SKMatrix44) |
Obsolete.
Converts the color space to a XYZ D50 matrix that describes the color space. |
ToXyzD50()
Caution
Use ToColorSpaceXyz() instead.
Describes color space gamut as a transformation to XYZ D50.
public SkiaSharp.SKMatrix44 ToXyzD50 ();
[System.Obsolete("Use ToColorSpaceXyz() instead.")]
public SkiaSharp.SKMatrix44 ToXyzD50 ();
Returns
Returns the matrix if the color gamut can be described as a matrix, otherwise null
.
- Attributes
Applies to
ToXyzD50(SKMatrix44)
Caution
Use ToColorSpaceXyz(out SKColorSpaceXyz) instead.
Converts the color space to a XYZ D50 matrix that describes the color space.
public bool ToXyzD50 (SkiaSharp.SKMatrix44 toXyzD50);
[System.Obsolete("Use ToColorSpaceXyz(out SKColorSpaceXyz) instead.")]
public bool ToXyzD50 (SkiaSharp.SKMatrix44 toXyzD50);
Parameters
- toXyzD50
- SKMatrix44
The matrix that describes the color space.
Returns
Returns true
if the color gamut can be described as a matrix, otherwise false
.
- Attributes