alexheretic / ab-glyph

Rust API for loading, scaling, positioning and rasterizing OpenType font glyphs
Apache License 2.0
372 stars 24 forks source link

Support for TrueType collections (`.ttc`) #106

Closed abrisco closed 3 months ago

abrisco commented 3 months ago

Is it possible to load a TrueType collection (.ttc file)? A quick search search didn't reveal anything so thought I'd ask 😄.

Also, thank you for this library!

alexheretic commented 3 months ago

I haven't really built in much support for them as I never had need to use one myself. But I believe they should work, you can parse a font in one using its index with FontRef::try_from_slice_and_index.

abrisco commented 3 months ago

That works, thank you so much!