GroupDocs.Signature provides ImageSignature class to manipulate image signatures and delete them from the documents over delete method. Please be aware that delete method modifies the same document that was passed to constructor of Signature class.
Here are the steps to delete Image signature from the document with GroupDocs.Signature:
Create new instance of Signature class and pass source document path as a constructor parameter;
Select from list ImageSignature object(s) that should be removed from the document;
Call Signature object delete method and pass one or several signatures to it.
Analyze DeleteResult result to check whether signatures were updated or not.
Here are the alternative steps to delete Image signature from the document with GroupDocs.Signature. This approach is based on saved signatures Id after search or sign methods.
Create new instance of Signature class and pass source document path as a constructor parameter;
Instantiate one or several ImageSignature objects with signature Id(s) passed to constructor;
Call Signature class object delete method and pass one or several signatures to it;
Analyze DeleteResult result to check whether signatures were updated or not.
Delete Image signature from the document after Search
This example shows how to delete Image signature that was found using search method.
Delete Image signature from the document by known signature Identifier
This example shows how to delete Image signature in the document by known signature Id (that was obtained by search or sign method previously).
// initialize Signature instance
Signaturesignature=newSignature("signed.docx");// read from some data source signature Id value
String[]signatureIdList=newString[]{"1a5fbc08-4b96-43d9-b650-578b16fbb877","1d4cf995-3150-47a0-b17a-44c17ecf7279"};// create list of Image Signature by known SignatureId
List<BaseSignature>signatures=newArrayList<BaseSignature>();for(Stringitem:signatureIdList){signatures.add(newImageSignature(item));}// delete required signatures
DeleteResultdeleteResult=signature.delete("signed.docx",signatures);if(deleteResult.getSucceeded().size()==signatures.size()){System.out.print("All signatures were successfully deleted!");}else{System.out.print("Successfully deleted signatures : "+deleteResult.getSucceeded().size());System.out.print("Not deleted signatures : "+deleteResult.getFailed().size());}System.out.print("List of deleted signatures:");for(BaseSignaturetemp:deleteResult.getSucceeded()){System.out.print("Signature# Id:"+temp.getSignatureId()+", Location: "+temp.getLeft()+"x"+temp.getTop()+". Size: "+temp.getWidth()+"x"+temp.getHeight());}
More resources
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.