Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
idcm
/
application
/
third_party
/
dompdf
/
vendor
/
dompdf
/
php-font-lib
/
src
/
FontLib
/
Table
/
Type
:
prep.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * @package php-font-lib * @link https://github.com/dompdf/php-font-lib * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License */ namespace FontLib\Table\Type; use FontLib\Table\Table; /** * `prep` font table. * * @package php-font-lib */ class prep extends Table { private $rawData; protected function _parse() { $font = $this->getFont(); $font->seek($this->entry->offset); $this->rawData = $font->read($this->entry->length); } function _encode() { return $this->getFont()->write($this->rawData, $this->entry->length); } }