node-qrcode-lite/examples/save.js
2020-04-16 22:50:11 +01:00

12 lines
269 B
JavaScript

const QRCode = require('../lib')
const path = './tmp.png'
QRCode.toFile(path, 'life of the party bros', {
color: {
dark: '#00F', // Blue modules
light: '#0000' // Transparent background
}
}, function (err) {
if (err) throw err
console.log('saved.')
})