Hey guys. I’ve run into a problem where the barcode recognition is not detecting these barcodes, although they appear to be quite clean and well formatted. The RecognitionDemo for the older 3.x version does not see these at all. I will attach .JPG’s of some of these and the appropriate values.
Hi,
Thank you for inquiry.
I checked the images with the toolkit provided with v4.2 and it failed to recognize after setting all postal or just OneCode. It seems to be an issue with the toolkit demo, we will look into it (Issue ID: 29999).
But, when I use BarCodeReader class in VS with dll from bin/3.5 folder, it reads all these barcodes.
List filenames = new List();
filenames.Add(@“barcode_1.JPG”);
filenames.Add(@“barcode_2.jpg”);
filenames.Add(@“barcode_3.jpg”);
filenames.Add(@“barcode_4.jpg”);
filenames.Add(@“barcode_5.jpg”);
filenames.Add(@“barcode_6.jpg”);
foreach (string filename in filenames)
{
Console.WriteLine("Trying to read from " + filename + “…”);
BarCodeReader reader = new BarCodeReader(filename, BarCodeReadType.OneCode);
while (reader.Read() == true)
{
Console.WriteLine("Recognized from " + filename + ": Codetext: " + reader.GetCodeText() +
" Symbology: " + reader.GetReadType().ToString());
}
reader.Close();
}
The issues you have found earlier (filed as BARCODENET-29999) have been fixed in this update.
This message was posted using Notification2Forum from Downloads module by aspose.notifier.