Home
last modified time | relevance | path

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

/plugin/dw2pdf/vendor/mpdf/mpdf/src/Writer/
H A DFontWriter.php188 $w = $this->mpdf->_getCharWidth($font['cw'], $u);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DOtl.php3219 $cw = round($this->mpdf->_getCharWidth($this->mpdf->CurrentFont['cw'], $this->OTLdata[$basepos]['uni']) * $this->mpdf->CurrentFont['unitsPerEm'] / 1000); // convert back to font design units
3461 $pdfWidth = $this->mpdf->_getCharWidth($this->mpdf->CurrentFont['cw'], hexdec($currGlyph)); // DON'T convert back to design units
3557 $BaseWidth = $this->mpdf->_getCharWidth($this->mpdf->CurrentFont['cw'], $this->OTLdata[$matchedpos]['uni']) * $this->mpdf->CurrentFont['unitsPerEm'] / 1000; // convert back to font design units
3562 $BaseWidthExtra = $this->mpdf->_getCharWidth($this->mpdf->CurrentFont['cw'], $this->OTLdata[$i]['uni']) * $this->mpdf->CurrentFont['unitsPerEm'] / 1000; // convert back to font design units
3646 $LigatureWidth = $this->mpdf->_getCharWidth($this->mpdf->CurrentFont['cw'], $this->OTLdata[$matchedpos]['uni']) * $this->mpdf->CurrentFont['unitsPerEm'] / 1000; // convert back to font design units
3651 $LigatureWidthExtra = $this->mpdf->_getCharWidth($this->mpdf->CurrentFont['cw'], $this->OTLdata[$i]['uni']) * $this->mpdf->CurrentFont['unitsPerEm'] / 1000; // convert back to font design units
3721 $Mark2Width = $this->mpdf->_getCharWidth($this->mpdf->CurrentFont['cw'], $this->OTLdata[$matchedpos]['uni']) * $this->mpdf->CurrentFont['unitsPerEm'] / 1000; // convert back to font design units
H A DMpdf.php3471 function _getCharWidth(&$cw, $u, $isdef = true)
3561 $charw = $this->_getCharWidth($this->CurrentFont['cw'], $this->upperCase[$char]);
3573 $charw = $this->_getCharWidth($this->CurrentFont['cw'], $char);
3657 $charw = $this->_getCharWidth($cw, $this->upperCase[$char]);
3669 $charw = $this->_getCharWidth($cw, $char);
4666 $tatw = $this->_getCharWidth($this->CurrentFont['cw'], 0x0640);
5648 $tatw = $this->_getCharWidth($this->CurrentFont['cw'], 0x0640);
26359 $cw = $this->_getCharWidth($this->CurrentFont['cw'], 32) * 3 * $fh * $size / 1000;
3443 function _getCharWidth(&$cw, $u, $isdef = true) global() function in Mpdf\\Mpdf
H A DOtlDump.php3554 $pdfWidth = $this->mpdf->_getCharWidth($this->mpdf->fonts[$this->fontkey]['cw'], hexdec($Glyphs[$i]));