The team GroupDocs is really excited to announce the another monthly release of GroupDocs.Signature for Java v18.1. This release comes up with a feature of setting Text Shadow for Slides, Words and Cells documents. Furthermore, many 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.1 – Features
Ability to set Text Shadow in text signatures
Using version 18.1, users can set Text Shadow in text signatures for Slides, Words and Cells documents. Following code sample shows how to set Text Shadow in text signatures for Slides:SlidesSignTextOptions signOptions = new SlidesSignTextOptions("John Smith");
// set up shadow options for text
TextShadow shadow = new TextShadow();
shadow.setColor(Color.ORANGE);
shadow.setAngle(135);
shadow.setBlur(5);
shadow.setDistance(4);
shadow.setTransparency(0.2);
//add text shadow to signature extensions
signOptions.getExtensions().add(shadow);
Set Text Shadow effect for text as image signature
Users can set Text Shadow effect for text as image signature for all document types.Java eSignature API v18.1 – Improvements
- Signature and Verification events arguments with additional properties
- Information of URL provided document with corrected value
- Verification of result with additional properties
- Result of Signing methods when Document provided by URL
- TextShadow class implementation and namespace
e-Signing API for Java 18.1 – Bug Fixes
- Output file name has no extension for Stream and URL Document source
- Update result Stream of Sign methods
- Loading Documents from URL without target filename
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