How to search for Image signatures
Leave feedback
GroupDocs.Signature providesΒ ImageSearchOptionsΒ classΒ to specify different options to search for Image e-signatures.
Β Here are the steps to search for Image signatures within the document with GroupDocs.Signature API:
- Create new instance ofΒ SignatureΒ class and pass source document path as a constructor parameter;
- Instantiate theΒ ImageSearchOptionsΒ object according to your requirements and specify additional search options (if needed);
- CallΒ SearchΒ method ofΒ Signature class instance and passΒ ImageSearchOptionsΒ to it.
The code snippet below demonstrates how to search for Image electronic signature in the document.
string fileName = "sample.pdf";
using (Signature signature = new Signature(fileName))
{
// search document
List<ImageSignature> signatures = signature.Search<ImageSignature>(SignatureType.Image);
Console.WriteLine($"\nSource document ['{fileName}'] contains following image signature(s).");
// output signatures
foreach (ImageSignature imageSignature in signatures)
{
Console.WriteLine($"Image signature found at page {imageSignature.PageNumber} " +
$"with size {imageSignature.Size}. Created {imageSignature.CreatedOn}, " +
$"modified {imageSignature.ModifiedOn}");
}
}
To learn more about document eSign features, please refer to theΒ advanced usage section.
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
Along with the full-featured .NET library, we provide simple but powerful free online apps.
To sign PDF, Word, Excel, PowerPoint, and other documents you can use the online apps from the GroupDocs.Signature App Product Family.
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.