Home
last modified time | relevance | path

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

1234

/plugin/reflect/
Daction.php176 $red = hexdec(substr($bgcolor, 0, 2));
177 $green = hexdec(substr($bgcolor, 2, 2));
178 $blue = hexdec(substr($bgcolor, 4, 2));
179 $alpha = hexdec(substr($bgcolor, 6, 2));
183 $red = hexdec(substr($bgcolor, 0, 2));
184 $green = hexdec(substr($bgcolor, 2, 2));
185 $blue = hexdec(substr($bgcolor, 4, 2));
186 $alpha = hexdec('00');
194 $red = hexdec($red . $red);
195 $green = hexdec($green . $green);
[all …]
/plugin/svgimg2/
Dhelper.php120 $red = hexdec(substr($bgcolor, 0, 2));
121 $green = hexdec(substr($bgcolor, 2, 2));
122 $blue = hexdec(substr($bgcolor, 4, 2));
129 $red = hexdec($red . $red);
130 $green = hexdec($green . $green);
131 $blue = hexdec($blue . $blue);
/plugin/fontcolor/images/
Dcolor-icon.php10 imagefill($img, 0, 0, imagecolorallocate($img, hexdec($red), hexdec($green), hexdec($blue)));
/plugin/barcodes/lib/
DColor.php34 $this->red = hexdec(substr($matches[1], 0, 2));
35 $this->green = hexdec(substr($matches[1], 2, 2));
36 $this->blue = hexdec(substr($matches[1], 4, 2));
/plugin/typography/images/fontcolor/
Dcolor-icon.php21 … imagefill($img, 0, 0, imagecolorallocate($img, hexdec($red), hexdec($green), hexdec($blue)));
/plugin/box/
Dsyntax.php243 hexdec($colour[1] . $colour[1]),
244 hexdec($colour[2] . $colour[2]),
245 hexdec($colour[3] . $colour[3])
250 hexdec(substr($colour, 1, 2)),
251 hexdec(substr($colour, 3, 2)),
252 hexdec(substr($colour, 5, 2))
/plugin/matrixnotifierwas/
Dhelper.php81 $embed_color = hexdec ( "37474f" ); // default value
86 $embed_color = hexdec ( "00cc00" );
91 $embed_color = hexdec ( "00cccc" );
96 $embed_color = hexdec ( "00cccc" );
101 $embed_color = hexdec ( "cc0000" );
/plugin/findologicxmlexport/vendor/symfony/yaml/
DUnescaper.php111 return self::utf8chr(hexdec(substr($value, 2, 2)));
113 return self::utf8chr(hexdec(substr($value, 2, 4)));
115 return self::utf8chr(hexdec(substr($value, 2, 8)));
/plugin/combo/vendor/symfony/yaml/
H A DUnescaper.php105 return self::utf8chr(hexdec(substr($value, 2, 2)));
107 return self::utf8chr(hexdec(substr($value, 2, 4)));
109 return self::utf8chr(hexdec(substr($value, 2, 8)));
/plugin/discordnotifier/
Dhelper.php77 $embed_color = hexdec ( "37474f" ); // default value
82 $embed_color = hexdec ( "00cc00" );
87 $embed_color = hexdec ( "00cccc" );
92 $embed_color = hexdec ( "00cccc" );
97 $embed_color = hexdec ( "cc0000" );
/plugin/box2/
Dsyntax.php268 …return array(hexdec($colour[1].$colour[1]),hexdec($colour[2].$colour[2]),hexdec($colour[3].$colour…
271 …return array(hexdec(substr($colour,1,2)),hexdec(substr($colour,3,2)), hexdec(substr($colour,5,2)));
/plugin/badbehaviour/
Dadmin.php106 $ip = hexdec(substr($code,0,2)).'.'.
107 hexdec(substr($code,2,2)).'.'.
108 hexdec(substr($code,4,2)).'.'.
109 hexdec(substr($code,6,2));
/plugin/character/
Dsyntax.php48 $data['codepoint'] = hexdec(substr($raw, 2));
51 $data['codepoint'] = hexdec(substr($raw, 2));
54 $data['codepoint'] = hexdec(substr($raw, 3, -1));
60 $data['codepoint'] = hexdec(substr($raw, 3, -1));
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/
DEntityParser.php123 return HTMLPurifier_Encoder::unichr(hexdec($hex_part));
218 $code = $is_hex ? hexdec($matches[1]) : (int) $matches[2];
273 $int = $is_hex ? hexdec($matches[1]) : (int) $matches[2];
/plugin/struct/types/
H A DColor.php121 $red = hexdec(substr($color, 1, 2));
122 $green = hexdec(substr($color, 3, 2));
123 $blue = hexdec(substr($color, 5, 2));
/plugin/barcodes/vendor/jucksearm/php-barcode/lib/
DPDF417Factory.php139 $r = hexdec(substr($color, 0, 2));
140 $g = hexdec(substr($color, 2, 2));
141 $b = hexdec(substr($color, 4, 2));
143 $r = hexdec(substr($color, 0, 1).substr($color, 0, 1));
144 $g = hexdec(substr($color, 1, 1).substr($color, 1, 1));
145 $b = hexdec(substr($color, 2, 1).substr($color, 2, 1));
DDatamatrixFactory.php139 $r = hexdec(substr($color, 0, 2));
140 $g = hexdec(substr($color, 2, 2));
141 $b = hexdec(substr($color, 4, 2));
143 $r = hexdec(substr($color, 0, 1).substr($color, 0, 1));
144 $g = hexdec(substr($color, 1, 1).substr($color, 1, 1));
145 $b = hexdec(substr($color, 2, 1).substr($color, 2, 1));
DBarcodeFactory.php165 $r = hexdec(substr($color, 0, 2));
166 $g = hexdec(substr($color, 2, 2));
167 $b = hexdec(substr($color, 4, 2));
169 $r = hexdec(substr($color, 0, 1).substr($color, 0, 1));
170 $g = hexdec(substr($color, 1, 1).substr($color, 1, 1));
171 $b = hexdec(substr($color, 2, 1).substr($color, 2, 1));
DQRcodeFactory.php178 $r = hexdec(substr($color, 0, 2));
179 $g = hexdec(substr($color, 2, 2));
180 $b = hexdec(substr($color, 4, 2));
182 $r = hexdec(substr($color, 0, 1).substr($color, 0, 1));
183 $g = hexdec(substr($color, 1, 1).substr($color, 1, 1));
184 $b = hexdec(substr($color, 2, 1).substr($color, 2, 1));
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Barcode/
DImb.php136 $first_byte = sprintf('%2s', dechex((hexdec($binaryCodeArray[0]) << 2) >> 2));
226 $data = hexdec($codeArray[0]) << 5;
238 $data = hexdec($codeArray[$byte]) << 3;
352 $dec = bcadd($dec, bcmul(hexdec($hex[$pos]), $bitval));
/plugin/projects/lib/
Dtools.php38 $R = hexdec(substr($color, 1, 2));
39 $G = hexdec(substr($color, 3, 2));
40 $B = hexdec(substr($color, 5, 2));
/plugin/captcha/
Dhelper.php195 $ident = hexdec(substr(md5($ident), 5, 5)); // use part of the md5 to generate an int
219 $code .= chr(floor(hexdec($numbers[$i] . $numbers[$i + 1]) / 10) + 65);
237 $op = (hexdec($numbers[0]) > 8) ? -1 : 1;
238 $num = [hexdec($numbers[1] . $numbers[2]), hexdec($numbers[3])];
/plugin/fontcolor/
Dsyntax.php182 $hexdec = substr($parsedcss, 17, -4);
183 return $hexdec;
/plugin/freechat/phpfreechat/lib/csstidy-1.2/
Dclass.csstidy.php371 …if(hexdec($add) > 47 && hexdec($add) < 58 || hexdec($add) > 64 && hexdec($add) < 91 || hexdec($add…
373 …$this->log('Replaced unicode notation: Changed \\'. $add .' to ' . chr(hexdec($add)),'Information'…
374 $add = chr(hexdec($add));
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
Dmodule.audio-video.asf.php1629 $hexbytecharstring = chr(hexdec(substr($GUIDstring, 6, 2)));
1630 $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 4, 2)));
1631 $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 2, 2)));
1632 $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 0, 2)));
1634 $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 11, 2)));
1635 $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 9, 2)));
1637 $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 16, 2)));
1638 $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 14, 2)));
1640 $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 19, 2)));
1641 $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 21, 2)));
[all …]

1234