Class CieCoordinatesTriple
Class CieCoordinatesTriple
Namespace: Aspose.Imaging.FileFormats.Bmp.Structures
Assembly: Aspose.Imaging.dll (25.7.0)
The class contains the x,y, and z coordinates of the three colors that correspond to the red, green, and blue endpoints for a specified logical color space.
public class CieCoordinatesTriple
{
private double _X;
private double _Y;
private double _Z;
public double X
{
get => this._X;
set => this._X = value;
}
public double Y
{
get => this._Y;
set => this._Y = value;
}
public double Z
{
get => this._Z;
set => this._Z = value;
}
}
Inheritance
Inherited Members
object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Constructors
CieCoordinatesTriple(byte[])
Initializes a new instance of the Aspose.Imaging.FileFormats.Bmp.Structures.CieCoordinatesTriple class.
public CieCoordinatesTriple(byte[] bytes)
{
}
Parameters
bytes
byte
[]
The bytes.
Properties
CieXyzBlue
Gets the xyz coordinates of blue endpoint.
public CieCoordinates CieXyzBlue
{
get;
}
Property Value
CieXyzGreen
Gets the xyz coordinates of green endpoint.
public CieCoordinates CieXyzGreen
{
get;
}
Property Value
CieXyzRed
Gets the xyz coordinates of red endpoint.
public CieCoordinates CieXyzRed
{
get;
}