|
|
|
|
|
- Miscellaneous
- Drawing in PHP
RGBGreen (Function) In french: RVBVert Returns the green component of an RGB color.
RGBGreen(RGB(128, 38, 15)) // Returns 38
Syntax
<Result> = RGBGreen(<RGBÂ color>)
<Result>: Integer Green component of RGB color (included between 0 and 255). <RGB color>: Integer Color (24 bits). This color is the result of the following formula:Color = 65536 * Blue Component + 256 * Green Component + Red Component. Remarks - RGB returns the identifier of the color described from its Red, Green and Blue components.
- RGBRed returns the red component of an RGB color. RGBBlue returns the blue component of an RGB color.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|