user669444
user669444

Reputation: 133

Barcode scan ZXING library

Sample barcode

Hi, I am integrating the zxing library in my android application. I am able to scan different barcodes. However I am unable to scan the barcode image in the above URL.It is quite big actually. It is a CODE_128 barcode. If I upload the image at the developers site , it is able to return to me the parsed content. I'm not sure if I'm doing something wrong because other smaller CODE_128 barcode get scanned easily. Can someone please tell me if you are able to scan the attached barcode. Any other tips would be helpful too. Thanks.

This is the intent action I'm using

Intent intent = new Intent("com.google.zxing.client.android.SCAN");
        intent.putExtra("com.google.zxing.client.android.SCAN.SCAN_MODE",
            "ONE_D_MODE");

PS: Barcode scanner apps in Google Play couldnt scan it either.

Upvotes: 0

Views: 1065

Answers (1)

Litrik De Roy
Litrik De Roy

Reputation: 1042

Have you tried using the IntentIntegrator as explained here? That seems to be a more robust way of launching the zxing scanner that creating your own Intent (with extra's) by hand.

Upvotes: 1

Related Questions