yWorks / svg2pdf.js

A javascript-only SVG to PDF conversion utility that runs in the browser. Brought to you by yWorks - the diagramming experts
MIT License
654 stars 101 forks source link

Improve text measuring performance in Edge #88

Closed HackbrettXXX closed 5 years ago

HackbrettXXX commented 5 years ago

The svg text measuring is slow in Edge, because inserting the svg element into the DOM causes a complete style recalculation of the whole document: image

We can probably reuse the svg element for multiple text measures.