@dougancora,
Thanks for the sample and version details.
Please notice, I am able to reproduce the issue as you mentioned by using the simplest lines of code. I found Aspose.BarCode does not read barcode from “Sample-check-3.jpg” image although it can read MICR code on another image “Sample-check-2.jpg”:
e.g.
Sample code:
var bmp1 = new Bitmap("e:\\test2\\Sample-check-3.jpg");
using (Aspose.BarCode.BarCodeRecognition.BarCodeReader reader1 = new Aspose.BarCode.BarCodeRecognition.BarCodeReader(bmp1, Aspose.BarCode.BarCodeRecognition.DecodeType.AllSupportedTypes))
{
Console.WriteLine(reader1.ReadBarCodes().Length);//0
foreach (Aspose.BarCode.BarCodeRecognition.BarCodeResult result1 in reader1.ReadBarCodes())
{
// Read symbology type and code text
Console.WriteLine("Symbology Type: " + result1.CodeType);
Console.WriteLine("CodeText: " + result1.CodeText);
}
}
I have logged a ticket with an id “BARCODENET-38244” for your issue. We will look into it soon.
Once we have an update on it, we will let you know.