Barcode reading from tiff images and pdf documents

Barcode reading from tiff images and pdf documents

Hi Saravan,


Thank you for considering Aspose.

Could you please elaborate further, what platform (.NET/Java) are you interested in?

Please note that both products (Aspose.BarCode for .NET and Aspose.BarCode for Java) are capable of reading barcode symbols from PDF documents as well as Tiff image format.

Looking forward to your kind response.

Regards,

Thanks a lot Babar Raza..

for (int i = 0; i < pageCount; i++) {
BufferedImage _bufferedImage = _imageReader.read(i);
com.BarCodeReader reader = new BarCodeReader(_bufferedImage, BarCodeReadType.Datamatrix);
//Read the barcodes in a single page
while (reader.read())
{
System.out.println(reader.getCodeText());
}
}


From Above snippet ,can i know from which class or which jar i can import com.BarCodeReader and BarCodeReadType.Datamatrix since it was giving error when i try to run tiffWithJAI class

Hi Saravan,


BarCodeReader and BarCodeReadType classes are present in com.aspose.barcoderecognition package. For more clarification, I have attached a sample application including the referenced libraries.

Please note, if you are evaluating Aspose.BarCode for Java component then you will not be able to recognize DataMatrix symbol due to the evaluation limitations.

Feel free to write back in case of further inquiries.