I need to scan a barcode using phonegap in Android and iPhone. Is there a way to do this? If yes, please share links.

link|improve this question

50% accept rate
feedback

4 Answers

up vote 2 down vote accepted

This link leads you to a page where you can learn how to implement the PhoneGap Barcode Scanner plugin in your application

link|improve this answer
feedback

Kris Erickson is correct, the Zxing & Phonegap projects has already taken care of the heavy lifting for you. (My current SO reputation disallows me from commenting, but I would have.)

I've just made an Phonegap/Android app that scans a QR barcode using the plugin here. Follow the instructions and you should be successful. It's possible that the plugin has been written since Kris's answer.

The Javascript is simple, taken straight from https://github.com/phonegap/phonegap-plugins/

    var scanBarcode = function() {
    window.plugins.barcodeScanner.scan( BarcodeScanner.Type.QR_CODE,function(result) {
        alert("We got a barcode: " + result);
    }, function(error) {
        alert("Scanning failed: " + error);
    }, {yesString: "Install"}
    );
 }      
link|improve this answer
does anybody know the password for the zip? I cant unzip the package, it requires a password. – dan Nov 3 '11 at 9:46
thanks for the help – Mayur Birari Dec 6 '11 at 10:39
Dear Rob, I have some confused. In my opinion, In Barcode Reader, we don't use PhoneGAP. We connect directly with Camera ANdroid or Iphone PhongeGap use Browse (HTML or Javascript) to call Apps. But no where to use Browse. Thanks you – maydenec Jan 16 at 9:09
Hello @maydenec, I don't think I understand the comment/question. Sounds like you are not using PhoneGap. Is that true? Can you edit? – Rob Jan 31 at 18:39
In case you want to go straight to the plugin: github.com/phonegap/phonegap-plugins/tree/master/iOS/… – Daniel Bang May 14 at 3:16
feedback

Your going to have a build a Phonegap plug-in, but the hard work has already be done for you by zxing.

link|improve this answer
1  
Hi Can you please give pointers as to how to use ZXing implementation in application. I am unable to make the use the same in my application. – Neha Oct 14 '10 at 8:57
feedback

I recently used the ZBar plugin + the PhoneGap plugin to access ZBar. More details here - http://blog.infoentropy.com/Use_ZBar_barcode_reader_with_PhoneGap.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.