-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
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
renderface/renderstring! for Ptr{FreeType.LibFreeType.FT_FaceRec_} face type? #38
Comments
We should just deprecate newface!
Is the new way of doing things! |
If you want to make a PR to update the readme, that would help a lot :) |
Awesome! Thank you! Should I also export |
Yeah, sounds like a good idea! |
is a deprecations for |
Yes, sorry... I didn't do this very cleanly :( |
i also got a |
You mean warning? https://github.com/JuliaGraphics/FreeTypeAbstraction.jl/blob/master/src/rendering.jl#L48 |
warning, right. sorry. |
I tried the examples in the readme but the
face = newface("hack_regular.ttf")
return type isPtr{FreeType.LibFreeType.FT_FaceRec_}
and it's not compatible withrenderface/renderstring!
, which needs::FreeTypeAbstraction.FTFont
.As workaround I used
face = FreeTypeAbstraction.FTFont(newface("DroidSansMono.ttf"))
The text was updated successfully, but these errors were encountered: