C# 클래스 huedotnet.HSVRGB

파일 보기 프로젝트 열기: in18/hics 1 사용 예제들

공개 메소드들

메소드 설명
ConvertToHSL ( int r, int g, int b, double &hue, double &saturation, double &luminance ) : void

Konvertiere RGB nach HSL Farbsystem

ConvertToRGB ( double hue, double sat, double bri, int &r, int &g, int &b ) : void

Konvertier HSL zu RGB Farb-System Die math. Formeln sind vom Internet

메소드 상세

ConvertToHSL() 공개 메소드

Konvertiere RGB nach HSL Farbsystem
public ConvertToHSL ( int r, int g, int b, double &hue, double &saturation, double &luminance ) : void
r int Rotwert 0-255
g int Grünwert 0-255
b int Blauwert 0-255
hue double Variable als OUT, auf welche der HUE-Wert gespeichert wird
saturation double Variable als OUT, auf welche der Sättigungs-Wert gespeichert wird
luminance double Variable als OUT, auf welche der Helligkeits-Wert gespeichert wird
리턴 void

ConvertToRGB() 공개 메소드

Konvertier HSL zu RGB Farb-System Die math. Formeln sind vom Internet
public ConvertToRGB ( double hue, double sat, double bri, int &r, int &g, int &b ) : void
hue double Grad-Parameter in der HSL-Farb-Skala. 0-0.9999
sat double Stättigungswert 0-255
bri double Helligkeit 0-255
r int Out Variable für Rot-Wert
g int Out Variable für Grün-Wert
b int Out Variable für Blau-Wert
리턴 void