C# Class ImageMagick.ColorYUV

Class that represents a YUV color.
Inheritance: ColorBase
Afficher le fichier Open project: dlemstra/Magick.NET

Méthodes publiques

Méthode Description
ColorYUV ( double y, double u, double v ) : System

Initializes a new instance of the ColorYUV class.

FromMagickColor ( MagickColor color ) : ColorYUV

Converts the specified MagickColor to an instance of this type.

Méthodes protégées

Méthode Description
UpdateValue ( ) : void

Updates the color value in an inherited class.

Private Methods

Méthode Description
ColorYUV ( MagickColor color ) : System

Method Details

ColorYUV() public méthode

Initializes a new instance of the ColorYUV class.
public ColorYUV ( double y, double u, double v ) : System
y double Y component value of this color.
u double U component value of this color.
v double V component value of this color.
Résultat System

FromMagickColor() public static méthode

Converts the specified MagickColor to an instance of this type.
public static FromMagickColor ( MagickColor color ) : ColorYUV
color MagickColor The color to use.
Résultat ColorYUV

UpdateValue() protected méthode

Updates the color value in an inherited class.
protected UpdateValue ( ) : void
Résultat void