Improved Barcode Recognition Performance in Aspose.BarCode for .NET 3.9

We are pleased to announce a new version of Aspose.BarCode for .NET v3.9. It now supports exclusive locking of the barcode image, which can result in improved barcode recognition performance for large sized images.

BarCodeReader reader = new BarCodeReader(image, BarCodeReadType.Code128);
// Acquire an exclusive lock on the image
reader.SetHints(RecognitionHints.ImageAccessHints.Exclusive);
while (reader.Read() == true)
{
      Console.WriteLine(“Codetext: ” + reader.GetCodeText());
}
reader.Close();