We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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_load only loads the face at index 0 - we should load all faces, and loop through them internally.
try_load
We can get the number of faces in a file by this operation.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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_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.
The text was updated successfully, but these errors were encountered: