1.0.4 • Published 8 years ago
webpack-jsqrcode v1.0.4
Webpack-jsqrcode
This is the porting from jsqrcode.
Build
npm install
npm run buildThe 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 evokedEvent
When qrcode is decoded, and get the decoded result.
qrcode.onGetResult = function(decodedResult) {
}More detail example
Reference to jsqrcode test.html.