Dear All,
I have received the Temporary License for 30 days, and am trying to decode Multipage TIFF image which contains multiple 2D datamatrix barcodes. Even after trying to use the License as mentioned in below link, am getting the error. Please help.
Exception in thread “main” class com.aspose.barcoderecognition.BarCodeRecognitionException: Sorry, evaluation version only allows Code39 recognition
Please set BarCodeReader’s BarCodeReadType property to Code39Standard.
//Place the set license method inside a try block
String licFilePath = “d:\data\aspose\lic\Aspose.BarCode.lic”;
try
{
// Set license for generating/reading barcode
com.aspose.barcode.License licBarcode = new com.aspose.barcode.License();
licBarcode.setLicense(licFilePath);
}
catch (Exception ex)
{
// handle exception
}