hc-qrcode
v0.1.55
Published
qrcode generator
Readme
Create a QR code and convert it into base64
import {toBase64} from 'hc-qrcode'
toBase64(
{
text: 'https://hc.biz',
options: {
width: 200,
margin: 0,
errorCorrectionLevel: "M"
},
callback: (dataURL) => {
console.log(dataURL)
const image = new Image()
image.src = dataURL
document.body.appendChild(image)
}
}
)
// Or Promise
const imagesBase64 = await toBase64(
text: 'https://hc.biz',
options: {
width: 200,
margin: 0,
errorCorrectionLevel: "M"
},
)