AForge.Imaging.RGB.RGB C# (CSharp) Method

RGB() public method

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.
return System
        public RGB( byte red, byte green, byte blue, byte alpha )
        {
            this.Red   = red;
            this.Green = green;
            this.Blue  = blue;
            this.Alpha = alpha;
        }

Same methods

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