8d0261b650b27fd2044cf3fa2cbb19779d7532a6
ZBar Barcode Scanner Plugin
This plugin integrates with the ZBar library, exposing a JavaScript interface for scanning barcodes (QR, 2D, etc).
Installation
cordova plugins install org.cloudsky.cordovaplugins.zbar
License
This plugin is released under the Apache 2.0 license, but the ZBar library on which it depends (and which is distribute with this plugin) is under the LGPL license (2.1).
API
Scan barcode
cloudSky.zBar.scan(params, onSuccess, onFailure)
Arguments:
-
params: Optional parameters:
{ text_title: "Title Text - default = 'Scan QR Code'", text_instructions: "Instruction Text - default = 'Please point your camera at the QR code.'", }
-
onSuccess: function (s) {...} Callback for successful scan.
-
onFailure: function (s) {...} Callback for cancelled scan or error.
Return:
- success('scanned bar code') Successful scan with value of scanned code
- error('cancelled') If user cancelled the scan (with back button etc)
- error('misc error message') Misc failure
Status:
- Android: DONE
- iOS: DONE
Description
Languages
C++
62%
Objective-C
23.3%
Java
14.3%
JavaScript
0.4%