]>
Raphaƫl G. Git Repositories - cdn/blob - picture/ausweis/bnp/greyscale.php
12 foreach($colors as $color) {
13 $rgb = str_split(substr($color, 1), 2);
14 $hex = hexdec($rgb[0]) * 0.2126 +
hexdec($rgb[1]) * 0.7152 +
hexdec($rgb[2]) * 0.0722;
15 $greyscale = '#'.str_repeat(dechex($hex), 3);
17 var_dump($color.' => '.$greyscale.' => '.$hex);