We are pleased to announce the release of Aspose.BarCode for Java 18.12. This release gives you the ability to read dotted barcodes from Tiff images. For a detailed note on what is new and fixed, please visit the release notes page of API documentation.

Read dotted BarCodes from TIFF Images using Java

The new release of Aspose.BarCode adds the ability to read dotted barcodes from Tiff images. You may read such barcodes as shown below.

String fileName = "Test.tiff";
BarCodeReader reader = new BarCodeReader(fileName, 
new MultyDecodeType(DecodeType.ALL_SUPPORTED_TYPES));
while (reader.read())
    System.out.println(reader.getCodeText());

Other Enhancements made to the API

Other than the ability to read dotted barcodes from Tiff images, XML serialization was enhanced and made compatible between .NET and Java.

Aspose.BarCode for Java Resources

The following API resources can be of help to you in getting started with Aspose.BarCode: