svg2dataurl
v1.0.2
Published
Convert SVG to SVG/PNG/JPEG DataURL
Downloads
1
Readme
svg2dataurl
Convert SVG to SVG/PNG/JPEG DataURL. Just forked from likr/svg-dataurl and then do some modifications.
- Instead of commonsjs module ,use es6 module.
- Fix some issues.
Install
$ npm install svg2dataurl
Usage
import {SvgConverter} from 'svg2dataurl'
const svg = documentGetElementById('chart')
const downloadLink = documentGetElementById('#download-link')
SvgConverter.loadFromElement(svg).then((converter) => {
const dataUrl = converter.pngDataURL()
downloadLink.setAttribute('href', dataUrl)
})