GroupDocs.Signature provides TextSignature class to manipulate text signatures and delete them from the documents.
Please be aware that Delete method modifies the same document that was passed to constructor of Signature class.
How to delete Text signature from the document
Here are the steps to delete Text 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 TextSignature object(s) that should be removed from the document;
Call Signature object Delete method and pass one or several signatures to it.
This example shows how to delete Text signature that was found using Search method.
// The path to the documents directory.
constfilePath=Constants.SAMPLE_PDF_SIGNED;constfileName=path.basename(filePath);constoutputDirectory=path.join(Constants.OutputPath,'DeleteById');if(!fs.existsSync(outputDirectory)){fs.mkdirSync(outputDirectory,{recursive:true});}// Copy source file since the delete method works with the same Document
constoutputFilePath=path.join(outputDirectory,fileName);fs.copyFileSync(filePath,outputFilePath);constsignature=newsignatureLib.Signature(outputFilePath);constid='eff64a14-dad9-47b0-88e5-2ee4e3604e71';constresult=awaitsignature.delete(id);if(result){console.log(`Signature with Id# '${id}' was deleted from document ['${fileName}'].`);}else{console.log(`Signature was not deleted from the document! Signature with id# '${id}' was not found!`);}
More resources
GitHub Examples
You may easily run the code above and see the feature in action in our GitHub examples: