rasterize-svg
v1.0.3
Published
Create rasterized images from SVG nodes
Downloads
5
Maintainers
Readme
rasterize-svg
Rasterize SVG Elements for Download as PNG
I needed an easy way to download SVG images created in D3 as PNG. I found that Mike Bostock made an Observable Notebook which solved the exact problem. the only issue was that some of the ways Observable handles DOM manipulation is not directly compatible with the browser. I modified the original code to be browser compatible.
Methods
rasterize-svg exports a default function which returns a promise once the file has been saved.
import saveSvg from 'rasterize-svg'
const svgNode = document.querySelector('#mySVG') as SVGElement;
saveSvg(svgNode, 'mySVG.png')
.then(() => {
// file saved
});