GroupDocs.Signature provides overloaded delete method that accepts one SignatureType or list of them.
Please be aware that this method modifies the same document that was passed to constructor of the Signature class.
Here are the steps to delete signature by specific type from the document with GroupDocs.Signature:
Create new instance of Signature class and pass source document path or its stream as a constructor parameter;
This example shows how to delete QR-Code signatures from the document.
Signaturesignature=newSignature("signed.pdf");{// deleting QR-Code signatures from the document
DeleteResultresult=signature.delete("signed_out.pdf",SignatureType.QrCode);if(result.getSucceeded().size()>0){System.out.print("Following QR-Code signatures were deleted:");intnumber=1;for(BaseSignaturetemp:result.getSucceeded()){System.out.print("Signature #"+number+++": Type: "+temp.getSignatureType()+" Id:"+temp.getSignatureId()+", Text: "+((QrCodeSignature)temp).getText());}}else{System.out.print("No one QR-Code signature was deleted.");}}
Advanced Usage Topics
To learn more about document eSign features, please refer to the Advanced usage section.
More resources
GitHub Examples
You may easily run the code above and see the feature in action in our GitHub examples: