Barcode can not read after upgrade from 4.1.0 to 7.4.0

Hi,


As attached, this simple Code128 format barcode can not read after we updated dll from 4.1.0 to 7.4.0.
Could you please check and strong your dll? Dll 5.4,6.1 also has similar problem. So that we do not dare to upgrade.

Hope your prompt reply. Thanks.

Lena
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.

Hi,

But I use your Aspose.Barcode.Toolkit.exe, it can not recognize the barcode. Please see the attached screenshot.

Thanks,
Lena

Hi,


I found that the dll is used for Console Application, but in Windows Application the dll is useless. Only 2D barcode can be recognized, 1D barcode can not be recognized.

Please double check.

Thanks,
Lena
Hi Lena,

Thank you for your inquiry.

Please note that we are able to notice the issue mentioned by you. The issue has been logged into our issue tracking system with ID BARCODENET-34325. Our product team will further look into it. We will update you accordingly.

The issues you have found earlier (filed as BARCODENET-34325) have been fixed in this update.


This message was posted using Notification2Forum from Downloads module by Aspose Notifier.