Groups
Conversations
All groups and messages
Send feedback to Google
Help
Training
Sign in
Groups
zxing
Conversations
Labels
About
Zxing - scanning issue for iOS application.
54 views
ZXing
code128
detection
ios
issue
Skip to first unread message
jose francis
unread,
Jul 20, 2015, 9:18:25 AM
7/20/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
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