Zxing does not read CODE 128 Barcode with more than 8 characters

Asked

Viewed 45 times

1

I need some help, I made a code to read Barcode from the camera of the Cell phone. When I put more than 8 characters in CODE 128 the system does not read. In other formats Read but in code 128 no. What can it be? Here’s an example and how’s my code? - The camera phone is 13 mega pixels - Zxing version: 2.4.1.0 - Runtime version: v4.0.30319

BarCode

var options = new MobileBarcodeScanningOptions
        {
            TryHarder = true,
            TryInverted  = true,
            PossibleFormats = new List<ZXing.BarcodeFormat>
            {
               ZXing.BarcodeFormat.CODE_39, ZXing.BarcodeFormat.EAN_13,ZXing.BarcodeFormat.CODABAR,ZXing.BarcodeFormat.CODE_128
            },
            PureBarcode = true
        };

        scanPage = new ZXingScannerPage(options);
  • Lucas, welcome to Sopt. Please translate your post into Portuguese, which is the language of this site. If you prefer, post the question in English on [OS].

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.