C# 클래스 ImageMagick.ColorHSL

Class that represents a HSL color.
상속: ColorBase
파일 보기 프로젝트 열기: dlemstra/Magick.NET

공개 메소드들

메소드 설명
ColorHSL ( double hue, double saturation, double lightness ) : System

Initializes a new instance of the ColorHSL class.

FromMagickColor ( MagickColor color ) : ColorHSL

Converts the specified MagickColor to an instance of this type.

보호된 메소드들

메소드 설명
UpdateValue ( ) : void

Updates the color value in an inherited class.

비공개 메소드들

메소드 설명
ColorHSL ( MagickColor color ) : System
Initialize ( double red, double green, double blue ) : void

메소드 상세

ColorHSL() 공개 메소드

Initializes a new instance of the ColorHSL class.
public ColorHSL ( double hue, double saturation, double lightness ) : System
hue double Hue component value of this color.
saturation double Saturation component value of this color.
lightness double Lightness component value of this color.
리턴 System

FromMagickColor() 공개 정적인 메소드

Converts the specified MagickColor to an instance of this type.
public static FromMagickColor ( MagickColor color ) : ColorHSL
color MagickColor The color to use.
리턴 ColorHSL

UpdateValue() 보호된 메소드

Updates the color value in an inherited class.
protected UpdateValue ( ) : void
리턴 void