EasyQRCodeJS-NodeJS is a NodeJS server side javascript QRCode image(PNG/JPEG/SVG/Base64 data url) generator. Support setting Dot style, Logo, Background image, Colorful, Title and more. Support binary(hex) data mode.
Hi, I have just generated my first qr code but it resulted into a black background. See screenshot.
And here is my configuration.
var data = {
"text": "This is the content",
"correctLevel": 0,
"PO": "#e1622f",
"backgroundImageAlpha":0,
"logo":"https://...4965-8538-243d3956946f.png",
"AI":"#ffffff",
"AO":"#ffffff",
"timing":"#e1622f"
}
Then I call this.
const qrcode = new QRCode(data);
const result = await qrcode.toDataURL();
Hi, I have just generated my first qr code but it resulted into a black background. See screenshot.
And here is my configuration.
Then I call this.
How can I remove the black background?