Skip to content

isTeemo/QRCodeLogo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

qrcodeforlogo is a Node package developed to allow for the creation of QR codes with embedded logo images.

Installation

Use node package manager (npm) to install install QRLogo.

npm install --save qrcodeforlogo

Saving as PNG

const QRLogo = require('qrcodeforlogo');

const data = JSON.stringify({name: "Zacharie Happel",
              job:  "Student/Intern", 
              grade: "Senior"
})
 
await QRLogo.generateQRWithLogo(data, "logo.png", {}, "PNG", "qrlogo.png") 

Base64

const QRLogo = require('qrcodeforlogo');

const data = JSON.stringify({name: "Zacharie Happel",
              job:  "Student/Intern", 
              grade: "Senior"
})
 
await QRLogo.generateQRWithLogo(data, "logo.png", {}, "Base64", "qrlogo.png", async function(b64) {
              console.log("Base64: \n" + b64);
}); 

Information

QRLogo currently only supports saving images as PNG and the exportation of Base64 formatted data.

qrcode to facilitate the creation of the QR codes, and the sharp npm package as the means to which images are overlaid.

qrcode options may be included when creating the QR code image:

const opts = {
   errorCorrectionLevel:'H',
   rendererOpts: { quality: 0.3 }
}; 

Example Input/Output:

Logo Image:

Logo

QR Code:

QR

License

MIT

About

QRCodeLogo is a Node package developed to allow for the creation of QR codes with embedded logo images.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published