ColorYUV Class
Contents
[
Hide
]Summary: Represents an YUV color.
Module: aspose.imaging.magicwand
Full Name: aspose.imaging.magicwand.ColorYUV
Constructors
Name | Description |
---|---|
ColorYUV() | Initializes a new instance of the ColorYUV class |
ColorYUV(color) | Initializes a new instance of the ColorYUV structure from the specified existing Color. |
ColorYUV(y, u, v) | Initializes a new instance of the ColorYUV structure with the specified luminance component, blue and red projection components. |
Properties
Name | Type | Access | Description |
---|---|---|---|
u | double | r | Gets the blue projection component value of this ColorYUV structure. |
v | double | r | Gets the red projection component value of this ColorYUV structure. |
y | double | r | Gets the luminance component value of this ColorYUV structure. |
Constructor: ColorYUV()
ColorYUV()
Initializes a new instance of the ColorYUV class
Constructor: ColorYUV(color)
ColorYUV(color)
Initializes a new instance of the ColorYUV structure from the specified existing Color.
Parameters:
Parameter | Type | Description |
---|---|---|
color | Color | The Color from which to create the new ColorYUV. |
Constructor: ColorYUV(y, u, v)
ColorYUV(y, u, v)
Initializes a new instance of the ColorYUV structure with the specified luminance component, blue and red projection components.
Parameters:
Parameter | Type | Description |
---|---|---|
y | int | The luminance component value. |
u | int | The blue projection component value. |
v | int | The red projection component value. |