We are reading the attached image with this code:
using (BarCodeReader reader = new BarCodeReader(item, BarCodeReadType.PatchCode))
{
reader.OrientationHints = RecognitionHints.Orientation.NoRotate;
reader.ImageBinarizationHints = RecognitionHints.ImageBinarization.Grayscale;
reader.ChecksumValidation = ChecksumValidation.Off;
reader.ExpectedBarCodeCount = 1;
//read
while (reader.Read())
{
listBox1.Items.Add(reader.GetCodeText());
}
//Close Reader
reader.Close();
}
Is taking 11 seconds for it to complete. Anything that can be done to speed up the process? We are using version 5.5.0.0
Hi Luis,
Thanks for your inquiry. I would like to update you that it is taking 7.5 seconds without using visual studio. You can check the speed test from Exe file. The visual studio should be closed. Anyways, I have logged an investigation to speed up the process. This task has been logged under ticket id BARCODENET-33537 in our issue tracking system. We will soon investigate the cause. Also, you will be notified once the fix for your problem is available for public use.
Please accept our apologies for your inconvenience.
Just note that using another component we get the same result in about 1 second. My company may be moving to that component if we dont get this resolve (same happened with your PDF SDK and we end up with another component).
Thanks for the help
Hi Luis,
We have a good news for you is BARCODENET-33537 has now been resolved and its fix will be included in the next version of Aspose.BarCode for .NET 5.9.0. It is expected at the end of next month. We will inform you via this forum thread as soon as the new release is published.
The issues you have found earlier (filed as BARCODENET-33537) have been fixed in this update.
This message was posted using Notification2Forum from Downloads module by Aspose Notifier.