Skip to content
/ csZBar Public
forked from tjwoon/csZBar

Cordova plugin to integrate with the ZBar barcode scanning library.

Notifications You must be signed in to change notification settings

behrndt/csZBar

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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: Unused for now. Will be an object in the future if we extend this plugin with options to specify scannable barcode types, etc.
  • 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

About

Cordova plugin to integrate with the ZBar barcode scanning library.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 70.0%
  • Objective-C 22.1%
  • Java 7.7%
  • JavaScript 0.2%