Articles in this section
Category / Section

How to add multiple digital signature ?

1 min read

How to add multiple digital signature:

It is possible to add multiple digital signature in the Pdf document, for this you need to set document permissions in the PdfSignature class using PdfCertificateFlags enumeration while creating the first signature. Below is the code snippet.

C#:

 
  PdfSignature signature = new PdfSignature(page, pdfCert, "Signature");
  PdfBitmap bmp = new PdfBitmap(@"..\..\Data\syncfusion_logo.gif");
 
  signature.Bounds = new RectangleF(new PointF(5, 5), bmp.PhysicalDimension);
  signature.ContactInfo = "johndoe@owned.us";
  signature.LocationInfo = "Honolulu, Hawaii";
  signature.Reason = "I am author of this document";
 
   signature.DocumentPermissions = PdfCertificationFlags.AllowComments |         PdfCertificationFlags.AllowFormFill | PdfCertificationFlags.ForbidChanges;
 
 

 

Sample Link:

https://www.syncfusion.com/downloads/support/directtrac/133647/ze/MultipleSignature820061917

 

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied