Select from list ImageSignature object(s) that should be updated;
Call Signature object update method and pass one or several signatures to it.
This example shows how to update Image signature that was found using search method.
using(Signaturesignature=newSignature("sampleSigned.pdf")){ImageSearchOptionsoptions=newImageSearchOptions();// search for image signatures in document
List<ImageSignature>signatures=signature.Search<ImageSignature>(options);if(signatures.Count>0){ImageSignatureimageSignature=signatures[0];// change Image properties
signatureToUpdate.Top=200;signatureToUpdate.Left=200;signatureToUpdate.Width=300;signatureToUpdate.Height=150;boolresult=signature.Update(imageSignature);if(result){Console.WriteLine($"Signature with Top '{imageSignature.Top}' was updated in the document ['{fileName}'].");}else{Console.WriteLine($"Signature was not updated in the document! Signature with Top '{imageSignature.Top}' was not found!");}}}
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:
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.
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.