コード例 #1
0
ファイル: head.php プロジェクト: akivaron/toko
 protected function _parse()
 {
     parent::_parse();
     if ($this->data["magicNumber"] != 0x5f0f3cf5) {
         throw new Exception("Incorrect magic number (" . dechex($this->data["magicNumber"]) . ")");
     }
 }
コード例 #2
0
ファイル: hhea.php プロジェクト: akivaron/toko
 function _encode()
 {
     $font = $this->getFont();
     $this->data["numOfLongHorMetrics"] = count($font->getSubset());
     return parent::_encode();
 }
コード例 #3
0
ファイル: maxp.php プロジェクト: akivaron/toko
 function _encode()
 {
     $font = $this->getFont();
     $this->data["numGlyphs"] = count($font->getSubset());
     return parent::_encode();
 }