An Angular 4+ Component library for Generating QR (Quick Response ) Codes .
A simple demo
This package is a fork from techiediaries/ngx-qrcode.
I have added the functionality to customize the version and error correction level of the QR code used during the generation process. Now you can use two new attributes in the component to send information to it from parent: qrc-version and qrc-correction-level.
To use this version of ngx-qrcode in your project, install it via npm:
$ npm install ngx-qrcode3 --save
For a complete and detailed tutorial on how to use this library .See :
How to Generate QR Codes In Angular 4+ Applications
Import the NgxQRCodeModule from ngx-qrcode into your app :
Once the library is imported, you can use the ngx-qrcode component in your Angular application:
<!-- Adding a qrcode generator component in app.component.html -->
<ngx-qrcode [qrc-value]="value" [qrc-version]=5 [qrc-correction-level]="'L'"></ngx-qrcode>
To generate all *.js
, *.d.ts
and *.metadata.json
files:
$ npm run build
To lint all *.ts
files:
$ npm run lint
MIT © Techiediaries Improvement: Xavis