Searched refs:glyphIDtoUni (Results 1 – 5 of 5) sorted by relevance
72 $this->fontCache->binaryWrite($fontkey . '.gid.dat', $ttf->glyphIDtoUni);
157 var $glyphIDtoUni; variable in Mpdf\\OtlDump799 $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);
204 public $glyphIDtoUni; variable in Mpdf\\TTFontFile1056 $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);
49 var $glyphIDtoUni; variable in Mpdf\\Otl139 $this->glyphIDtoUni = $this->mpdf->CurrentFont['glyphIDtoUni'];5856 …return (ord($this->glyphIDtoUni[$gid * 3]) << 16) + (ord($this->glyphIDtoUni[$gid * 3 + 1]) << 8) …
3932 $glyphIDtoUni = $this->fontCache->load($fontkey . '.gid.dat');3939 $glyphIDtoUni = $this->fontCache->load($fontkey . '.gid.dat');3990 'glyphIDtoUni' => $glyphIDtoUni,