Home
last modified time | relevance | path

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

/plugin/dw2pdf/vendor/mpdf/mpdf/src/Image/
H A DImageProcessor.php323 …$ppUx = $this->twoBytesToInt(substr($data, $j + 8, 2)); // horizontal pixels per meter, usually se…
390 $length = $this->twoBytesToInt(substr($data, $pos - 2, 2)) - 16;
1337 $p += $this->twoBytesToInt(substr($data, $p, 2)); // Length of initial marker block
1342 $p += $this->twoBytesToInt(substr($data, $p + 2, 2)) + 2; // Length of marker block
1360 $h = $this->twoBytesToInt(substr($hdr, 3, 2));
1361 $w = $this->twoBytesToInt(substr($hdr, 5, 2));
1384 $n = $this->twoBytesToInt($s);
1408 private function twoBytesToInt($s) function in Mpdf\\Image\\ImageProcessor