/svgb

Turn your svg file to buffer.

Primary LanguageJavaScript

svgb

Generate svg to buffer with template.

Installation

npm install svgb

Example code

const svgb = require('svgb')
const path = require('path')


setImmediate(async () => {
    const svgFile = path.join(__dirname, 'number.svg')
    
    try {
        const artwork = await svgb.toBuffer(svgFile, {number: 1})
        console.log(artwork)
    } catch (e) {
        console.log("ERROR", e)
    }
})