Hi Lena,
Thank you for your inquiry.
Please note that we have carried out investigation on the said issue. We have used the following code snippet to recognize the barcode. It is working fine. It is producing the desired results.
string filename = @"C:\barcode_files\Barcode128.png";
using (BarCodeReader reader = new BarCodeReader(filename, BarCodeReadType.Code128))
{
while (reader.Read())
{
string sResult = reader.GetReadType() + ": " + reader.GetCodeText();
Console.WriteLine(sResult);
}
}
Output: Code128: CC10DAF
Please try the above code snippet at your end. Feel free to contact us in case you have further comments or queries.