Home
last modified time | relevance | path

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

/plugin/dw2pdf/vendor/mpdf/mpdf/src/
DTTFontFile.php994 $numberOfHMetrics = $this->read_ushort();
996 if ($numberOfHMetrics == 0) {
1201 $this->getHMTX($numberOfHMetrics, $numGlyphs, $glyphToChar, $scale);
3506 $orignHmetrics = $numberOfHMetrics = $this->read_ushort();
3564 $this->getHMTX($numberOfHMetrics, $numGlyphs, $glyphToChar, $scale);
3603 $numGlyphs = $numberOfHMetrics = count($subsetglyphs);
3885 $hhea = $this->_set_ushort($hhea, 34, $numberOfHMetrics);
3998 $orignHmetrics = $numberOfHMetrics = $this->read_ushort();
4098 $this->getHMTX($numberOfHMetrics, $numGlyphs, $glyphToChar, $scale);
4169 $numberOfHMetrics = $n;
[all …]
DOtlDump.php728 $numberOfHMetrics = $this->read_ushort();
729 if ($numberOfHMetrics == 0) {
898 $this->getHMTX($numberOfHMetrics, $numGlyphs, $glyphToChar, $scale);
4071 function getHMTX($numberOfHMetrics, $numGlyphs, &$glyphToChar, $scale) argument
4083 if (($numberOfHMetrics * 4) < $this->maxStrLenRead) {
4084 $data = $this->get_chunk($start, ($numberOfHMetrics * 4));
4089 for ($glyph = 0; $glyph < $numberOfHMetrics; $glyph++) {
4090 if (($numberOfHMetrics * 4) < $this->maxStrLenRead) {
4121 $data = $this->get_chunk(($start + $numberOfHMetrics * 4), ($numGlyphs * 2));
4123 $diff = $numGlyphs - $numberOfHMetrics;
[all …]