Esempio n. 1
0
 public final function parse()
 {
     $this->entry->startRead();
     if (false && empty($this->def)) {
         $this->_parseRaw();
     } else {
         $this->_parse();
     }
     $this->entry->endRead();
 }
 public function load($file)
 {
     parent::load($file);
     $this->parseTableEntries();
     $dataOffset = $this->pos() + count($this->directory) * 20;
     $fw = $this->getTempFile(false);
     $fr = $this->f;
     $this->f = $fw;
     $offset = $this->header->encode();
     foreach ($this->directory as $entry) {
         $this->f = $fr;
         $this->seek($entry->offset);
         $data = $this->read($entry->length);
         if ($entry->length < $entry->origLength) {
             $data = gzuncompress($data);
         }
         $length = strlen($data);
         $entry->length = $entry->origLength = $length;
         $entry->offset = $dataOffset;
         $this->f = $fw;
         $this->seek($offset);
         $offset += $this->write($entry->tag, 4);
         $offset += $this->writeUInt32($dataOffset);
         $offset += $this->writeUInt32($length);
         $offset += $this->writeUInt32($length);
         $offset += $this->writeUInt32(Font_Table_Directory_Entry::computeChecksum($data));
         $this->seek($dataOffset);
         $dataOffset += $this->write($data, $length);
     }
     $this->f = $fw;
     $this->seek(0);
     $this->header = null;
     $this->directory = array();
     $this->parseTableEntries();
 }
 function __construct(Font_WOFF $font)
 {
     parent::__construct($font);
     $this->offset = $this->readUInt32();
     $this->length = $this->readUInt32();
     $this->origLength = $this->readUInt32();
     $this->checksum = $this->readUInt32();
 }
 function __construct(Font_TrueType $font)
 {
     parent::__construct($font);
     $this->checksum = $this->readUInt32();
     $this->offset = $this->readUInt32();
     $this->length = $this->readUInt32();
     $this->entryLength += 12;
 }
 function parse()
 {
     parent::parse();
     $font = $this->font;
     $this->offset = $font->readUInt32();
     $this->length = $font->readUInt32();
     $this->origLength = $font->readUInt32();
     $this->checksum = $font->readUInt32();
 }
 function endRead()
 {
     parent::endRead();
     $font = $this->font;
     if ($font->origF) {
         fclose($font->f);
         $font->f = $font->origF;
         $font->origF = null;
         $font->fileOffset = 0;
     }
 }
Esempio n. 7
0
    public function load($file)
    {
        parent::load($file);

        $this->parseTableEntries();
        $dataOffset = $this->pos() + count($this->directory) * 20;

        $fw = $this->getTempFile(false);
        $fr = $this->f;

        $this->f = $fw;
        $offset = $this->header->encode();

        foreach ($this->directory as $entry) {
            // Read ...
            $this->f = $fr;
            $this->seek($entry->offset);
            $data = $this->read($entry->length);

            if ($entry->length < $entry->origLength) {
                $data = gzuncompress($data);
            }

            // Prepare data ...
            $length = strlen($data);
            $entry->length = $entry->origLength = $length;
            $entry->offset = $dataOffset;

            // Write ...
            $this->f = $fw;

            // Woff Entry
            $this->seek($offset);
            $offset += $this->write($entry->tag, 4);    // tag
            $offset += $this->writeUInt32($dataOffset); // offset
            $offset += $this->writeUInt32($length);     // length
            $offset += $this->writeUInt32($length);     // origLength
            $offset += $this->writeUInt32(Font_Table_Directory_Entry::computeChecksum($data)); // checksum

            // Data
            $this->seek($dataOffset);
            $dataOffset += $this->write($data, $length);
        }

        $this->f = $fw;
        $this->seek(0);

        // Need to re-parse this, don't know why
        $this->header = null;
        $this->directory = array();
        $this->parseTableEntries();
    }
 public final function __construct(Font_Table_Directory_Entry $entry)
 {
     $this->entry = $entry;
     $entry->setTable($this);
 }