Hi Maikel,
Thank you for contacting support. We have tested your sample barcode picture against the latest build of Aspose.BarCode for .NET 7.0.0 and managed to replicate the problem of incorrect recognition. We have logged this issue under ticket id BARCODENET-34197 in our issue tracking system. Your post has also been linked to this issue. We’ll keep you informed regarding any available updates. We’re sorry for the inconvenience caused.
As a workaround with orientation degree 90, Aspose.BarCode APIs reads a correct QR code. Please refer to the following solution:
[.NET, C#]
// load barcode picture
BarCodeReader read = new BarCodeReader(@“C:\temp\barcode.jpg”, BarCodeReadType.QR);
// set orientation degree as 90
read.OrientationHints = RecognitionHints.Orientation.Rotate90;
// scan barcode picture
while (read.Read())
{
Console.WriteLine("Code: " + read.GetCodeText() + " Type: " + read.GetReadType());
}
read.Close();
Result: Code: 1101605566 Type: QR
We hope, this helps. Please feel free to reply us in case of any confusion or questions.