How to save svg canvas to local filesystem

前端 未结 16 1488
南旧
南旧 2020-11-27 10:10

Is there a way to allow a user, after he has created a vector graph on a javascript svg canvas using a browser, to download this file to their local filesystem?

SVG

16条回答
  •  忘掉有多难
    2020-11-27 10:34

    Using FileSaver.js

    saveAs(new Blob([SVG_DATA_HERE], {type:"application/svg+xml"}), "name.svg")
    

提交回复
热议问题