Hi Ashish,
Thank you for contacting Syncfusion support.
We have analyzed your requirement and you can able to get the signature fields in an existing PDF document by using the below code snippet,
|
//Get existing form
PdfLoadedForm loadedForm = loadedDocument.Form;
for (int i=0;i<loadedForm.Fields.Count;i++)
{
//Check whether the field is signature field or not
if(loadedForm.Fields[i] is PdfLoadedSignatureField)
{
//Get the signature field
PdfLoadedSignatureField signatureField = loadedDocument.Form.Fields[i] asPdfLoadedSignatureField;
}
} |
We have created the sample to achieve your requirement of adding image to the signature box in the PDF document and please find the download link from below,
Please try the above sample in your end and let us know the result.
Regards,
Sowmiya Loganathan