2014-09-11 15:51:43 +08:00
# ZBar Barcode Scanner Plugin
This plugin integrates with the [ZBar ](http://zbar.sourceforge.net/ ) library,
exposing a JavaScript interface for scanning barcodes (QR, 2D, etc).
2014-09-12 10:08:18 +08:00
## 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).
2014-09-11 15:51:43 +08:00
## API
### Scan barcode
cloudSky.zBar.scan(params, onSuccess, onFailure)
Arguments:
2014-12-06 15:40:17 +08:00
- **params**: Optional parameters:
```javascript
{
2014-12-06 15:44:44 +08:00
text_title: "OPTIONAL Title Text - default = 'Scan QR Code'", // Android only
text_instructions: "OPTIONAL Instruction Text - default = 'Please point your camera at the QR code.'", // Android only
2014-12-06 16:38:00 +08:00
camera: "front" || "back" // defaults to "back"
2014-12-06 16:58:46 +08:00
flash: "on" || "off" || "auto" // defaults to "auto"
2014-12-06 15:40:17 +08:00
}
```
2014-09-11 15:51:43 +08:00
- **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_
2014-09-11 15:55:51 +08:00
Status:
- Android: DONE
2014-09-12 01:45:17 +08:00
- iOS: DONE