1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
<?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
*/
require_once dirname(__FILE__) . "/Font_TrueType.php";
require_once dirname(__FILE__) . "/Font_OpenType_Table_Directory_Entry.php";
/**
* Open Type font, the same as a TrueType one.
*
* @package php-font-lib
*/
class Font_OpenType extends Font_TrueType {
//
}
|