Currently, it looks like FreeTypeAbstraction only searches the first face in each file, as can be seen here.
try_load only loads the face at index 0 - we should load all faces, and loop through them internally.
We can get the number of faces in a file by this operation.
Currently, it looks like FreeTypeAbstraction only searches the first face in each file, as can be seen here.
FreeTypeAbstraction.jl/src/findfonts.jl
Line 143 in b7d6d65
try_loadonly loads the face at index 0 - we should load all faces, and loop through them internally.We can get the number of faces in a file by this operation.