Home
last modified time | relevance | path

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

/plugin/dw2pdf/vendor/mpdf/mpdf/src/Image/
H A DBmp.php24 $bfOffBits = $this->_fourbytes2int_le(substr($data, 10, 4));
25 $width = $this->_fourbytes2int_le(substr($data, 18, 4));
26 $height = $this->_fourbytes2int_le(substr($data, 22, 4));
32 $biCompression = $this->_fourbytes2int_le(substr($data, 30, 4));
57 $biXPelsPerMeter = $this->_fourbytes2int_le(substr($data, 38, 4)); // horizontal pixels per meter, usually set to zero
58 //$biYPelsPerMeter=$this->_fourbytes2int_le(substr($data,42,4)); // vertical pixels per meter, usually set to zero
168 private function _fourbytes2int_le($s) function in Mpdf\\Image\\Bmp