Home
last modified time | relevance | path

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

/plugin/dw2pdf/vendor/mpdf/mpdf/src/Fonts/
DMetricsGenerator.php72 $this->fontCache->binaryWrite($fontkey . '.gid.dat', $ttf->glyphIDtoUni);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
DOtlDump.php157 var $glyphIDtoUni; variable in Mpdf\\OtlDump
799 $this->glyphIDtoUni = '';
882 $this->glyphIDtoUni = str_pad('', 256 * 256 * 3, "\x00");
887 $this->glyphIDtoUni[$gid * 3] = chr($char >> 16);
888 $this->glyphIDtoUni[$gid * 3 + 1] = chr(($char >> 8) & 0xFF);
889 $this->glyphIDtoUni[$gid * 3 + 2] = chr($char & 0xFF);
DTTFontFile.php204 public $glyphIDtoUni; variable in Mpdf\\TTFontFile
1056 $this->glyphIDtoUni = '';
1143 $this->glyphIDtoUni = str_pad('', 256 * 256 * 3, "\x00");
1149 $this->glyphIDtoUni[$gid * 3] = chr($char >> 16);
1150 $this->glyphIDtoUni[$gid * 3 + 1] = chr(($char >> 8) & 0xFF);
1151 $this->glyphIDtoUni[$gid * 3 + 2] = chr($char & 0xFF);
DOtl.php49 var $glyphIDtoUni; variable in Mpdf\\Otl
139 $this->glyphIDtoUni = $this->mpdf->CurrentFont['glyphIDtoUni'];
5856 …return (ord($this->glyphIDtoUni[$gid * 3]) << 16) + (ord($this->glyphIDtoUni[$gid * 3 + 1]) << 8) …
DMpdf.php3932 $glyphIDtoUni = $this->fontCache->load($fontkey . '.gid.dat');
3939 $glyphIDtoUni = $this->fontCache->load($fontkey . '.gid.dat');
3990 'glyphIDtoUni' => $glyphIDtoUni,