Zxing - scanning issue for iOS application.

54 views
Skip to first unread message

jose francis

unread,
Jul 20, 2015, 9:18:25 AM7/20/15
to zx...@googlegroups.com
I am developing a cross platform mobile application in which i have integrated zxing bar code library to scan VIN barcodes(mostly codes 128 and 39).

The library works very well for the android application and but on iOS application the bar code detection is very poor (70% failure).

The code I wrote is :

var scanner = new ZXing.Mobile.MobileBarcodeScanner();
var options = new ZXing.Mobile.MobileBarcodeScanningOptions();
var result = await scanner.Scan();
if(result != null)
{
var parsedResult = ResultParser.parseResult(result);
if (parsedResult.Type == ParsedResultType.VIN)
{
Console.WriteLine("Scanned Barcode: " + vinNumberResult);
}
else if (result != null)
{
vinNumberResult = result.Text;
Console.WriteLine("Scanned Barcode: " + vinNumberResult);
}
}


The same library working to scan the same bar code works very well on android but not on iOS.

Any kind of help or insight on the issue will be appreciable.

Thank you.
Reply all
Reply to author
Forward
0 new messages