We are delighted to announce the another monthly release of GroupDocs.Signature for Java v18.4. This release comes up with many features like searching QRCode and Barcode signatures in supported documents. Aside this, few improvements and fixes are also introduced in this version of the API. We would recommend you to download the new version of API and evaluate the exciting features to enhance document e-signing experience.
eSignature API for Java v18.4 – Features
Obtain Search Progress
Obtain search progress while searching signatures in the documents. Following code sample shows how to obtain search progress:SignatureHandler handler = new SignatureHandler(signConfig);
handler.SearchStarted.add(new ProcessStartEventHandler() {
public void invoke(Object sender, ProcessStartEventArgs args) {
System.out.println("Search started for "+args.getTotalSignatures()+"-page(s) in Document "+args.getGuid()+" started at " +String.valueOf(args.getStarted()));
}
});
Search QR-Code and Barcode Signatures
Search QR-Code and Barcode Signatures in following documents:- Cells
- Slides
- Words
- Image
PdfSearchBarcodeOptions searchOptions = new PdfSearchBarcodeOptions();
searchOptions.setText("12345678");
// specify text math type
searchOptions.setMatchType(TextMatchType.Contains);
// search document
SearchResult result = handler.search("SignedBarCode.pdf", searchOptions);
Rectangle Property for Radial Gradient Brush
Rectangle property to set borders of ellipse for Radial Gradient Brush is introduced.Java eSignature API v18.4 – Improvements
e-Signing API for Java 18.4 – Bug Fixes
- Multiple options on pages setup give duplicate page numbers
- Result of signing methods when document provided by URL
Available Channels and Resources
Here are a few channels and resources for you to learn, try and get technical support on GroupDocs.Signature API for Java:- Download – JAR Files
- Documentation – API Docs
- Product Support Forum – Technical Support Forum for GroupDocs.Signature
- Examples – GitHub source code examples