Hi,
I'm using Aspose barcode(dll version -6.6.0.0 -.Net 4.0) to read barcode type PDF417 . Barcode is identified as PDF417 but result values are not read properly.
I have used 200 DPI tiff image, results has lot of junk values. I have tried with 240 DPI, 300 DPI also & images doesn't give any proper results.
Attaching sample images for your review.
Below standard code I have used.
BarCodeReader reader;
reader = new BarCodeReader(FileName, BarCodeReadType.Pdf417);
while (reader.Read()) //Any barcode type
{
MessageBox.Show("Symbology Type: " + reader.GetReadType() + " CodeText: " + reader.GetCodeText());
}
reader.Close();