19 declare(strict_types=1);
37 if ($r < 0 || $r > 255) {
38 throw new \InvalidArgumentException(
"Unexpected value for \$r: '$r'");
40 if ($g < 0 || $g > 255) {
41 throw new \InvalidArgumentException(
"Unexpected value for \$g: '$g'");
43 if ($b < 0 || $b > 255) {
44 throw new \InvalidArgumentException(
"Unexpected value for \$b: '$b'");
95 foreach ($this->
asArray() as $value) {
96 $hex .= str_pad(dechex($value), 2,
'0', STR_PAD_LEFT);
106 return 'rgb(' . implode(
', ', $this->
asArray()) .
')';
117 $sum = 0.299 * $this->
r + 0.587 * $this->
g + 0.114 *
$this->b;
g()
Get the valule for green.
Color expresses a certain color by giving the mixing ratio in the RGB color space.
asHex()
Return color-value in hex-format.
asRGBString()
Return string with RGB-notation.
__construct(int $r, int $g, int $b)
b()
Get the valule for blue.
isDark()
Based on https://de.wikipedia.org/wiki/Luminanz this function decides if the color can be considered ...
asArray()
Return array with RGB-values.
r()
Get the valule for red.