Color32(Byte, Byte, Byte, Byte) Constructor

Initializes a new instance of the Color32 struct from ARGB (alpha, red, green, and blue) values.

Definition

Namespace: KGySoft.Drawing.Imaging
Assembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 8.1.0
C#
public Color32(
	byte a,
	byte r,
	byte g,
	byte b
)

Parameters

a  Byte
The alpha component.
r  Byte
The red component.
g  Byte
The green component.
b  Byte
The blue component.

See Also