Aspose.BarCode

Will Aspose.BarCode automatically recognize all of the Barcodes that it supports from just an image?

Which barcodes will it not automatically recognize?

How long does it take to recognize?

Hi,

Thank you for your inquiry.

Please note that Aspose.Barcode can recognize barcodes in a file. We are attaching sample code snippet for your reference that will demonstrate you count of recognized barcodes.

Aspose.BarCodeRecognition.BarCodeReader objBReader = new Aspose.BarCodeRecognition.BarCodeReader(@"C:\Input\Barcodes.jpg");
int counter = 0;
while (objBReader.Read())
{
counter++;
}
objBReader.Close();
MessageBox.Show(counter.ToString());


Further if you want to recognize barcodes of different symbology, access the link Recognizing Multiple Symbologies in Single Image.

Hope the above information helps. Feel free to contact us in case you have further comments or queries.