Go to file
TJ Woon d4d062cccc Merge pull request #16 from nickgerman/master
Added continuous autofocus on Android if the API Level supports it + added explicit enabling of all ZBar barcode formats
2015-04-19 23:51:24 +08:00
android renamed BarcodeFormat to ZBarcodeFormat, fixed indentation and added sdk check for continuous focus 2015-04-13 10:27:24 +10:00
ios Restore/update the hack for hiding ZBar scanner Info button on iOS 2015-02-27 18:41:44 +08:00
www Fix incorrect upperlower-casing of zbar.js file (pt2 of 2) 2015-02-16 19:01:57 +08:00
.gitignore .gitignore for Mac OS X files 2014-09-11 15:45:27 +08:00
plugin.xml renamed BarcodeFormat to ZBarcodeFormat, fixed indentation and added sdk check for continuous focus 2015-04-13 10:27:24 +10:00
README.md Added Thanks section to the README 2015-02-27 19:04:06 +08:00

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: "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
        camera: "front" || "back" // defaults to "back"
        flash: "on" || "off" || "auto" // defaults to "auto". See Quirks
        drawSight: true || false //defaults to true, create a red sight/line in the center of the scanner view.
    }
    
  • 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

Quirks:

  • Android: Flash "on" may cause the flash to alternate between on and off at about a half second/one second interval, instead of making it stay on...

Thanks

Thank you to @PaoloMessina for code contributions.