Angular QR Code
An AngularJS directive to create QR Codes using Kazuhiko Arase’s qrcode-generator library.
Installation
npm install angular-qrcode
Script elements
angular;
ES2015
;; // hacks for the browser// if using webpack there is a better solution belowwindowqrcode = qrcode;; angular;
ES2015 + webpack
Add the following to webpack.config.js
:
qrcode: 'qrcode-generator'
Import everything, no need for window
or require
hacks:
;;; angular;
Important!
Version and Error Correction
The amount of data a qrcode can contain is impacted by its version
and error-correction-level
.
version
designates the density of the encoding. If it isn't specifed, it defaults to 5
. If the version
specified is too small to contain the data given, the next highest version
will be tried automatically.
The maximum supported version
is 40
, and error-correction-level
defaults to M
.
For more information see http://www.qrcode.com/en/about/version.html.
Usage
as element
with QR options
as a downloadable image
as a link to URL
download
and href
can’t be used on the same element (if download
is present, href
will be ignored)
with expressions, observe changes
Options
Permitted values
-
version
:1–40
(default:5
) - if required, will be auto-incremented to contain data given -
error-correction-level
:L
,M
,Q
,H
(default:M
) -
size
:integer
(default:size
is calculated automatically) -
download
:boolean
(default:false
) -
href
:url
asstring
-
color
:hex
asstring
(default:#000
) -
background
:hex
asstring
(default:#fff
)
The amount of data (measured in bits) must be within capacity according to the version
and error correction level
, see http://www.qrcode.com/en/about/version.html.
Demo
monospaced.github.io/angular-qrcode