-
-
Notifications
You must be signed in to change notification settings - Fork 129
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
render TEXT element #8
Labels
enhancement
New feature or request
Comments
Text elements are not implemented. |
Currently working on it. It might take time. |
Okay, good to know. |
Added : 785c5b4 #include <lunasvg/svgdocument.h>
using namespace lunasvg;
int main()
{
SVGDocument document;
document.loadFontFromFile("yourfavorite.ttf");
document.loadFromFile("filewithtext.svg");
Bitmap bitmap = document.renderToBitmap();
// do something useful with the bitmap.
return 0;
}
|
Thank you for reporting this issue. |
Closed
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, I would like to know if is possible read and render Text element from svg file
The text was updated successfully, but these errors were encountered: