Sign a PDF document in UWP

To sign an existing approval signature field in a PDF Document:

C#

1PDFDoc document = new PDFDoc(inputDocumentPath);
2
3// Retrieve the unsigned approval signature field.
4Field foundApprovalField = document.GetField(inputApprovalFieldName);
5DigitalSignatureField foundApprovalSignatureDigitalSignatureField = new DigitalSignatureField(foundApprovalField);
6
7// (OPTIONAL) Add more information to the signature dictionary.
8foundApprovalSignatureDigitalSignatureField.SetLocation("Vancouver, BC");
9foundApprovalSignatureDigitalSignatureField.SetReason("Document approval.");
10foundApprovalSignatureDigitalSignatureField.SetContactInfo("www.apryse.com");
11
12// (OPTIONAL) Add an appearance to the signature field.
13Image image = Image.Create(document.GetSDFDoc(), inputAppearanceImagePath);
14SignatureWidget foundApprovalSignatureWidget = new SignatureWidget(foundApprovalField.GetSDFObj());
15foundApprovalSignatureWidget.CreateSignatureAppearance(image);
16
17// Prepare the signature and signature handler for signing.
18foundApprovalSignatureDigitalSignatureField.SignOnNextSave(inputPrivateKeyFilePath, inputKeyFilePassword);
19
20// The actual approval signing will be done during the following incremental save operation.
21await document.SaveAsync(inputOutPath, SDFDocSaveOptions.e_incremental);

Digitally sign PDF files
Full code sample which demonstrates using the digital signature API to digitally sign and/or certify PDF documents.

About Adding An Approval Signature to a PDF Document

The Apryse SDK enables approval signatures in PDF documents using a Digital Certificate, in accordance with the latest PDF specification. By leveraging public key infrastructure (PKI) technology, with a certificate issued by a trusted certificate authority (CA), a signer can use a certificate-based digital ID to guarantee the authenticity of a signature. Placement of a digital signature using a certificate can also guarantee that a document was not modified since the signature was placed, ensuring the authenticity of the document.

Apryse Docs Image

Image taken from Apryse WebViewer

Above is an example of a document containing a certified signature, guaranteed by a certificate generated by Apryse.com.

Did you find this helpful?

Trial setup questions?

Ask experts on Discord

Need other help?

Contact Support

Pricing or product questions?

Contact Sales