php-font-lib
php-font-lib copied to clipboard
How to support TTC fonts
How to support TTC fonts? Thanks♪(・ω・)ノ
To read a font from a collection you just need to open the TTC then specify the font you want:
$fc = new \FontLib\TrueType\Collection();
$fc->load($test_file);
$count = count($fc);
echo "Font collection contains $count fonts. Loading font at index 0.\n";
$font = $font->getFont(0);