/home/techb158/immovalet.com/vendor/phenx/php-font-lib
NameSizeModeActions
maps/-0755rm
sample-fonts/-0755rm
src/-0755rm
tests/-0755rm
.gitattributes1560644editdlrm
.gitignore460644editdlrm
.htaccess140644editdlrm
.travis.yml6220644editdlrm
bower.json5250644editdlrm
composer.json6030644editdlrm
index.php340644editdlrm
LICENSE243620644editdlrm
phpunit.xml.dist5450644editdlrm
README.md10510644editdlrm
Edit: /home/techb158/immovalet.com/vendor/phenx/php-font-lib/README.md (1051B)
# PHP Font Lib [![Build Status](https://travis-ci.org/PhenX/php-font-lib.svg?branch=master)](https://travis-ci.org/PhenX/php-font-lib) This library can be used to: * Read TrueType, OpenType (with TrueType glyphs), WOFF font files * Extract basic info (name, style, etc) * Extract advanced info (horizontal metrics, glyph names, glyph shapes, etc) * Make an Adobe Font Metrics (AFM) file from a font You can find a demo GUI [here](http://pxd.me/php-font-lib/www/font_explorer.html). This project was initiated by the need to read font files in the [DOMPDF project](https://github.com/dompdf/dompdf). Usage Example ------------- ``` $font = \FontLib\Font::load('../../fontfile.ttf'); $font->parse(); // for getFontWeight() to work this call must be done first! echo $font->getFontName() .'
'; echo $font->getFontSubfamily() .'
'; echo $font->getFontSubfamilyID() .'
'; echo $font->getFontFullName() .'
'; echo $font->getFontVersion() .'
'; echo $font->getFontWeight() .'
'; echo $font->getFontPostscriptName() .'
'; ```