C# 클래스 AForge.Imaging.RGB

RGB components.

The class encapsulates RGB color components.

PixelFormat.Format24bppRgb actually means BGR format.

파일 보기 프로젝트 열기: holisticware-admin/MonoVersal.AForgeNET 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
Alpha byte
Blue byte
Green byte
Red byte

공개 메소드들

메소드 설명
RGB ( ) : System

Initializes a new instance of the RGB class.

RGB ( System color ) : System

Initializes a new instance of the RGB class.

RGB ( byte red, byte green, byte blue ) : System

Initializes a new instance of the RGB class.

RGB ( byte red, byte green, byte blue, byte alpha ) : System

Initializes a new instance of the RGB class.

메소드 상세

RGB() 공개 메소드

Initializes a new instance of the RGB class.
public RGB ( ) : System
리턴 System

RGB() 공개 메소드

Initializes a new instance of the RGB class.
public RGB ( System color ) : System
color System Initialize from specified color.
리턴 System

RGB() 공개 메소드

Initializes a new instance of the RGB class.
public RGB ( byte red, byte green, byte blue ) : System
red byte Red component.
green byte Green component.
blue byte Blue component.
리턴 System

RGB() 공개 메소드

Initializes a new instance of the RGB class.
public RGB ( byte red, byte green, byte blue, byte alpha ) : System
red byte Red component.
green byte Green component.
blue byte Blue component.
alpha byte Alpha component.
리턴 System

프로퍼티 상세

Alpha 공개적으로 프로퍼티

Alpha component.
public byte Alpha
리턴 byte

Blue 공개적으로 프로퍼티

Blue component.
public byte Blue
리턴 byte

Green 공개적으로 프로퍼티

Green component.
public byte Green
리턴 byte

Red 공개적으로 프로퍼티

Red component.
public byte Red
리턴 byte