1.0.4 • Published 7 years ago

webpack-jsqrcode v1.0.4

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

Webpack-jsqrcode

This is the porting from jsqrcode.

Build

npm install
npm run build

The jsqrcode.js is in dist folder.

Usage

Example in index.html. Just inculde jsqrcode.js, then, you can use qrcode object.

    <script src="dist/jsqrcode.js"></script>

API

New an object

    var qrcode = window.qrcode;

Start decode

To feed the source image to qrcode object, create a canvas with id of qr-canvas, and drawImage on it, and then call decode to decode the result.

    qrcode.decode(); // After decode finished onGetResult event will be evoked

Event

When qrcode is decoded, and get the decoded result.

    qrcode.onGetResult = function(decodedResult) {
         
    }

More detail example

Reference to jsqrcode test.html.

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago