Hi,
While trying to read the barcode, from the attached file, with this codesnippet :
var bmp = new Bitmap(filename);
using (BarCodeReader reader = new BarCodeReader(bmp, DecodeType.Code128))
{
while (reader.Read())
{
var barcode = reader.GetCodeText();
}
}
The entire process hangs on the reader.Read() call.
Changing the DecodeType doesn’t solve the problem.
I already returned to previous versions, current version is 19.5, but the problem stays the same.
Biggest problem is that the process just hangs, without any kind of exception, so there is nothing that I can do to prevent the application from becoming unresponsive.
The properties of the bmp give no indication that there is something wrong with the bmp otherwise I could first check the properties before trying to Read the barcode.
ImageWithError.zip (43.8 KB)
Thanks for any suggestions,
Guillaume