Go to file
2014-12-06 15:44:44 +08:00
android Added text_title and text_instructions parameters for customising the scanner view's title and instructions texts (Android only in this commit) 2014-12-06 15:40:17 +08:00
ios Added iOS implementation (tested on iOS7, iPhone 4S...) 2014-09-12 01:45:17 +08:00
www Added text_title and text_instructions parameters for customising the scanner view's title and instructions texts (Android only in this commit) 2014-12-06 15:40:17 +08:00
.gitignore .gitignore for Mac OS X files 2014-09-11 15:45:27 +08:00
plugin.xml Added iOS implementation (tested on iOS7, iPhone 4S...) 2014-09-12 01:45:17 +08:00
README.md Clarified the Android-only and OPTIONAL status of the optional text_title and text_instructions parameters (see 8d0261b6) 2014-12-06 15:44:44 +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
    }
    
  • 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