php-font-lib icon indicating copy to clipboard operation
php-font-lib copied to clipboard

How to support TTC fonts

Open fontsinfo opened this issue 1 year ago • 1 comments

How to support TTC fonts? Thanks♪(・ω・)ノ

fontsinfo avatar Jan 19 '25 00:01 fontsinfo

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);

bsweeney avatar Jan 19 '25 15:01 bsweeney