Signature removing from PDF

Can anyone tell me how to remove a signature from a pdf file i heard that it can be done can you help me

Sorry for my bad english.

Hello Dado,

Thanks for considering Aspose.

PdfFileSignature class has a method named RemoveSignature which can be used to remove the Signatures from Pdf file. In case of any further query, please feel free to contact.

I hadn’t figured how can i remove the signature Could you help me what to do
please step by step. example I have a pdf document test.pdf and i want to remove the test@test.com signature how can i do that please explain.

Sorry for my bad english.


Hi,

Thank you very much for considering Aspose.

Can you please specify which language you are using? This will help us provide you a code snippet to remove the signature. Nevertheless, please find below code snippet in C# to remove the signature from a Pdf file.

//specify pdf file path
string inFile=TestPath + "example1.pdf";
//create an instance of PdfFileSignature class - this class manipulates signatures
PdfFileSignature pdfSign=new PdfFileSignature();
//bind pdf file using file specified earlier
pdfSign.BindPdf(inFile);
//now call RemoveSignature method by passing the name of the signature as an argument
pdfSign.RemoveSignature("signature name");

I hope this helps. If you still need any further assistance please do let us know.

Regards,