Browse our Products

Aspose.BarCode for Java 18.12 Release Notes

All Changes

KeySummaryCategory
BARCODENET-37024Not able to read dotted BarCodes from TIFF imagesBug
BARCODEJAVA-623An exception occurs for tests related to XML serializationBug
BARCODEJAVA-625Unable to Read Complete BarCode TextBug
BARCODEJAVA-624Restore compatibility of serialized XML code between .NET and JavaBug

Usage examples:

BARCODENET-37024 - Not able to read dotted barcodes from TIFF images

Usage of the new DecodeType fields:

String fileName = “Scenario-1_page2.tiff”;

BarCodeReader reader = new BarCodeReader(fileName, new MultyDecodeType(DecodeType.ALL_SUPPORTED_TYPES));

while (reader.read())

        System.out.println(reader.getCodeText());

BARCODEJAVA-625 - Unable to Read Complete BarCode Text

Usage of the new DecodeType fields:

String fileName = “test.jpg”;

String expectedText = “690458960500”;

String expectedCheckSum = “4”;

BaseDecodeType expectedDecodeType = DecodeType.EAN_13;

BarCodeReader reader = new BarCodeReader(fileName);

reader.setChecksumValidation(ChecksumValidation.ON);

reader.read();

System.out.println(reader.getCodeText());

System.out.println(reader.getCheckSum());

System.out.println(reader.getCodeType());

BARCODEJAVA-607 - Bring enums names into line with Java naming conventions 

Use following names of constants:

com.aspose.barcode.BorderDashStyle.SOLID

com.aspose.barcode.BorderDashStyle.DASH

com.aspose.barcode.BorderDashStyle.DOT

com.aspose.barcode.BorderDashStyle.DASH_DOT

com.aspose.barcode.BorderDashStyle.DASH_DOT_DOT

com.aspose.barcode.BuildVersionInfo.RELEASE_DATE

com.aspose.barcode.CodeLocation.ABOVE

com.aspose.barcode.CodeLocation.BELOW

com.aspose.barcode.CodeLocation.NONE

com.aspose.barcode.CodeLocation.RIGHT

Public API and Backward Incompatible Changes

Constants throughout the project were renamed into line with Java naming convention.