saveSvgAsPng
saveSvgAsPng copied to clipboard
Only bottom right of SVG displays in exported PNG
I had to update the following lines for it to export properly:
options.left || 0, options.top || 0,
...changed to:
options.left || -width/2, options.top || -height/2,
This sounds like a very odd issue. Can you supply a more complete example of the problem?