
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:
- Homepage for Aspose.BarCode for Java
- Download Aspose.BarCode for Java – Install Aspose.BarCode for Java from Maven
- Aspose.BarCode for Java docs – help documentation and API reference documents.
- Aspose.BarCode Product Family Forum – post your technical questions and queries, or any other problem you faced while running Aspose.BarCode APIs.
- Enable Email Subscription – Don’t limit yourself, you can keep yourself updated with the latest news on Aspose.BarCode APIs and new features, fixes, plus other API related topics by subscribing to Aspose.BarCode blog.
- Aspose.BarCode for Java Examples – We have published our code examples on the social coding website GitHub.com. Anyone could explore the code examples for learning purposes.