Color Get

STD Library
Both Server and Client
Both Mobile and PC

Construct a color value with a fixed transparency of decimal 255. First, convert the channel to a binary number, with each 8 bits representing a channel. Concatenate the numbers according to R, G, B, and transparency, and then convert the binary number to

Declaration

func ColorGet(r int, g int, b int) Color
go

Parameters

Input

Name Type Description
R Int The red channel value of the color, the value range is [0,255], if it exceeds the range, it will be clamped to a legal value
G Int The green channel value of the color, the value range is [0,255]. If it exceeds the range, it will be clamped to a legal value.
B Int The blue channel value of the color, the value range is [0,255]. If it exceeds the range, it will be clamped to a legal value.

Return

Type Description
Color Constructed color value