%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
<?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 */ /** * `OS/2` font table. * * @package php-font-lib */ class Font_Table_os2 extends Font_Table { protected $def = array( "version" => self::uint16, "xAvgCharWidth" => self::int16, "usWeightClass" => self::uint16, "usWidthClass" => self::uint16, "fsType" => self::int16, "ySubscriptXSize" => self::int16, "ySubscriptYSize" => self::int16, "ySubscriptXOffset" => self::int16, "ySubscriptYOffset" => self::int16, "ySuperscriptXSize" => self::int16, "ySuperscriptYSize" => self::int16, "ySuperscriptXOffset" => self::int16, "ySuperscriptYOffset" => self::int16, "yStrikeoutSize" => self::int16, "yStrikeoutPosition" => self::int16, "sFamilyClass" => self::int16, "panose" => array(self::uint8, 10), "ulCharRange" => array(self::uint32, 4), "achVendID" => array(self::char, 4), "fsSelection" => self::uint16, "fsFirstCharIndex" => self::uint16, "fsLastCharIndex" => self::uint16, "typoAscender" => self::int16, "typoDescender" => self::int16, "typoLineGap" => self::int16, "winAscent" => self::int16, "winDescent" => self::int16, ); }