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
A library I am using has this code to measure text.
const element = document.createElement('canvas'); const ctx = element.getContext("2d"); ctx.font = `${this.opts.fontSizeLarge}pt Helvetica, Arial, sans-serif` let textMetrics = ctx.measureText(text)
Is there any way to get this to work with svgdom? If not, what is replacement code that would accomplish the same?
The text was updated successfully, but these errors were encountered:
Just get the bounding box of the text by creating a text element and calling getBBox on it
Sorry, something went wrong.
No branches or pull requests
A library I am using has this code to measure text.
Is there any way to get this to work with svgdom? If not, what is replacement code that would accomplish the same?
The text was updated successfully, but these errors were encountered: