Home
last modified time | relevance | path

Searched refs:hexdec (Results 1 – 6 of 6) sorted by relevance

/webtrees/app/Report/
H A DReportPdfCell.php22 use function hexdec; alias
63 $r = hexdec($match[1]);
64 $g = hexdec($match[2]);
65 $b = hexdec($match[3]);
77 $r = hexdec($match[1]);
78 $g = hexdec($match[2]);
79 $b = hexdec($match[3]);
85 $r = hexdec($match[1]);
86 $g = hexdec($match[2]);
87 $b = hexdec($match[3]);
H A DReportPdfText.php24 use function hexdec; alias
60 $r = hexdec($match[1]);
61 $g = hexdec($match[2]);
62 $b = hexdec($match[3]);
H A DReportPdfTextBox.php23 use function hexdec; alias
244 $r = hexdec($match[1]);
245 $g = hexdec($match[2]);
246 $b = hexdec($match[3]);
/webtrees/app/Module/
H A DFanChartModule.php42 use function hexdec; alias
487 (int) hexdec(substr($css_color, 0, 2)),
488 (int) hexdec(substr($css_color, 2, 2)),
489 (int) hexdec(substr($css_color, 4, 2))
/webtrees/app/Factories/
H A DIdFactory.php27 use function hexdec; alias
91 $checksum_a += hexdec(substr($uid, $i, 2));
/webtrees/app/Statistics/Service/
H A DColorService.php23 use function hexdec; alias
91 …return array_map(static fn (string $hex): int => (int) hexdec($hex), str_split(ltrim($hex, '#'), 2…