0
votes

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.

1
Yes I did try scanning, it works and I got result saying invalid code. - Gru
@Gru Were you able to get the number beneath the barcode ? - user669444
yes, I used NeoReader for scanning. - Gru

1 Answers

1
votes

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.