//Load the existing PDF document
PdfLoadedDocument ldoc = new PdfLoadedDocument("../../input.pdf");
//Creates PDF Certificate.
PdfCertificate pdfCert = new PdfCertificate(@"../../PDF.pfx", "syncfusion");
//Create a new PDF signature field.
PdfSignature signature = new PdfSignature(ldoc, ldoc.Pages[0], pdfCert, "cert");
//Set the signature bounds
signature.Bounds = new System.Drawing.RectangleF(0, 200, 100, 100);
//Save the PDF document
ldoc.Save("output.pdf");
//Close the PDF document
ldoc.Close(true); |
Hi Chinnu,
Perfect! this is the right example!
Hi Chinnu,
This is perfect ! thanks for your support and for your great, great syncfusions products.
best regards,
Jordi