/
home
/
sjslayjy
/
public_html
/
drone
/
vendor
/
phenx
/
php-font-lib
/
src
/
FontLib
/
Table
/
Type
/
Upload File
HOME
<?php /** * @package php-font-lib * @link https://github.com/PhenX/php-font-lib * @author Fabien Ménager <fabien.menager@gmail.com> * @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); } }