Verify for multiple signatures
GroupDocs.Signature supports verification of documents for different signature types. This approach requires to add all required verification options to list.
Here are the steps to verify document for multiple signatures with GroupDocs.Signature:
- Create new instance of Signature class and pass source document path or stream as a constructor parameter.
- Instantiate required several VerifyOptions objects (BarcodeVerifyOptions, QrCodeVerifyOptions, DigitalVerifyOptions, TextVerifyOptions) and add instances to List<VerifyOptions> collection.
- Call verify method of Signature class instance and pass filled list of List<VerifyOptions> to it.
This example shows how to search for different signature types in the document.
Signature signature = new Signature("sampleSigned.pdf");
TextVerifyOptions textVerifyOptions = new TextVerifyOptions();
textVerifyOptions.setAllPages(true); // this value is set by default
textVerifyOptions.setText("John");
textVerifyOptions.setSignatureImplementation(TextSignatureImplementation.Stamp);
textVerifyOptions.setMatchType(TextMatchType.Contains);
BarcodeVerifyOptions barcVerifyOptions = new BarcodeVerifyOptions();
barcVerifyOptions.setAllPages(true); // this value is set by default
barcVerifyOptions.setText("John");
barcVerifyOptions.setMatchType(TextMatchType.Contains);
QrCodeVerifyOptions qrcdVerifyOptions = new QrCodeVerifyOptions();
qrcdVerifyOptions.setAllPages(true); // this value is set by default
qrcdVerifyOptions.setText("John");
qrcdVerifyOptions.setMatchType(TextMatchType.Contains);
DigitalVerifyOptions digtVerifyOptions = new DigitalVerifyOptions();
digtVerifyOptions.setComments("Test comment"); // this value is set by default
// verify document signatures
List<VerifyOptions> listOptions = new ArrayList<VerifyOptions>();
listOptions.add(textVerifyOptions);
listOptions.add(barcVerifyOptions);
listOptions.add(qrcdVerifyOptions);
listOptions.add(digtVerifyOptions);
// verify signatures in document
VerificationResult result = signature.verify(listOptions);
if (result.isValid())
{
System.out.print("\nDocument was verified successfully!");
}
else
{
System.out.print("\nDocument failed verification process.");
}
More resources
Advanced Usage Topics
To learn more about document eSign features, please refer to the advanced usage section.
GitHub Examples
You may easily run the code above and see the feature in action in our GitHub examples:
- GroupDocs.Signature for .NET examples, plugins, and showcase
- GroupDocs.Signature for Java examples, plugins, and showcase
- Document Signature for .NET MVC UI Example
- Document Signature for .NET App WebForms UI Example
- Document Signature for Java App Dropwizard UI Example
- Document Signature for Java Spring UI Example
Free Online App
Along with full-featured .NET library we provide simple, but powerful free Apps.
You are welcome to eSign PDF, Word, Excel, PowerPoint documents with free to use online GroupDocs Signature App.