Blame view

sources/3rdparty/dompdf/lib/php-font-lib/classes/font_woff.cls.php 2.24 KB
31b7f2792   Kload   Upgrade to ownclo...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
  <?php
  /**
   * @package php-font-lib
   * @link    http://php-font-lib.googlecode.com/
   * @author  Fabien Ménager <fabien.menager@gmail.com>
   * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
   * @version $Id: font_woff.cls.php 39 2012-01-15 12:25:22Z fabien.menager $
   */
  
  require_once dirname(__FILE__)."/font_truetype.cls.php";
  require_once dirname(__FILE__)."/font_woff_table_directory_entry.cls.php";
  require_once dirname(__FILE__)."/font_woff_header.cls.php";
  
  /**
   * WOFF font file.
   * 
   * @package php-font-lib
   */
  class Font_WOFF extends Font_TrueType {
    function parseHeader(){
      if (!empty($this->header)) {
        return;
      }
      
      $this->header = new Font_WOFF_Header($this);
      $this->header->parse();
    }
    
    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();
    }
  }