We are pleased to announce the release of Aspose.Barcode for Java 7.9.0. This release supports showing the code text on the right side of the barcode. A new algorithm has also been implemented which allows you to read 3D-distorted Aztec codes.
Set the code text location to the right side of a barcode
Aspose.Barcode for Java allows you to set the code text location to the right side of the barcode. This is helpful in showing the code text on the right side of a data matrix barcode. BarCodeBuilder. setCodeLocation can be set to CodeLocation.Right e.g.
BarCodeBuilder builder = new BarCodeBuilder(
"GTIN:898978777776665655
UID: 121212121212121212
Batch:GH768
Exp.Date:150923", Symbology.DataMatrix);
builder.setCodeLocation(CodeLocation.Right);
builder.setMargins(new MarginsF(0,0,0,0));
//builder.setCodeTextSpace(0); // not recommended small space
builder.save("codetextRight.png");
Enhancements
Following is a list of improvements included in this release.
- Aztec codes recognition has been improved
- QR barcode recognition has been improved
To view a complete list of new features and fixes and to download the latest release, please visit Aspose.Barcode for Java 7.8.0 page in downloads section.
Aspose.BarCode for Java Resources
The resources, you may need to accomplish your tasks:
- Homepage for Aspose.BarCode for Java API
- Download Aspose.BarCode for Java
- Aspose.BarCode for Java Wiki 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 can explore the code examples for learning purposes.