Reputation: 461
If you click "Create Canvas", it'll draw the SVG text at the bottom of the page onto the canvas. The only problem is that it's only taking the top left portion of the text. Any idea what's going on?
Upvotes: 3
Views: 189
Reputation: 124109
Change the SVG so its size matches the canvas and it works on Firefox for me e.g.
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" class="layer" id="layer_text" width="778" height="544">
Upvotes: 3