Searched refs:hexdec (Results 1 – 6 of 6) sorted by relevance
/webtrees/app/Report/ |
H A D | ReportPdfCell.php | 22 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 D | ReportPdfText.php | 24 use function hexdec; alias 60 $r = hexdec($match[1]); 61 $g = hexdec($match[2]); 62 $b = hexdec($match[3]);
|
H A D | ReportPdfTextBox.php | 23 use function hexdec; alias 244 $r = hexdec($match[1]); 245 $g = hexdec($match[2]); 246 $b = hexdec($match[3]);
|
/webtrees/app/Module/ |
H A D | FanChartModule.php | 42 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 D | IdFactory.php | 27 use function hexdec; alias 91 $checksum_a += hexdec(substr($uid, $i, 2));
|
/webtrees/app/Statistics/Service/ |
H A D | ColorService.php | 23 use function hexdec; alias 91 …return array_map(static fn (string $hex): int => (int) hexdec($hex), str_split(ltrim($hex, '#'), 2…
|