3 declare(strict_types=1);
23 if ($r < 0 || $r > 255) {
24 throw new \InvalidArgumentException(
"Unexpected value for \$r: '$r'");
26 if ($g < 0 || $g > 255) {
27 throw new \InvalidArgumentException(
"Unexpected value for \$g: '$g'");
29 if ($b < 0 || $b > 255) {
30 throw new \InvalidArgumentException(
"Unexpected value for \$b: '$b'");
81 foreach ($this->
asArray() as $value) {
82 $hex .= str_pad(dechex($value), 2,
'0', STR_PAD_LEFT);
92 return 'rgb(' . implode(
', ', $this->
asArray()) .
')';
103 $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.