GroupDocs.Signature allows to sign document with several signatures simultaneously and even apply signatures of different types to the same document. Doing this is as simple as:
Create new instance of Signature class and pass source document path or stream as a constructor parameter.
Instantiate required all required sign options objects dependent on signature type:
Fill collection with sign options from previous step.
Call sign method of Signature class instance and pass collection of sign options to it.
This code snippet below demonstrates how to eSign PDF document with multiple signatures at the same time.
Signaturesignature=newSignature("sample.pdf");// setup options with text of signature
// define several signature options of different types and settings
TextSignOptionstextOptions=newTextSignOptions("This is test message");textOptions.setVerticalAlignment(VerticalAlignment.Top);textOptions.setHorizontalAlignment(HorizontalAlignment.Left);BarcodeSignOptionsbarcodeOptions=newBarcodeSignOptions("123456");barcodeOptions.setEncodeType(BarcodeTypes.Code128);barcodeOptions.setLeft(100);barcodeOptions.setTop(100);QrCodeSignOptionsqrcodeOptions=newQrCodeSignOptions("JohnSmith");qrcodeOptions.setEncodeType(QrCodeTypes.QR);qrcodeOptions.setLeft(100);qrcodeOptions.setTop(200);DigitalSignOptionsdigitalOptions=newDigitalSignOptions("certificate.pfx");digitalOptions.setImageFilePath("sample.jpg");digitalOptions.setVerticalAlignment(VerticalAlignment.Center);digitalOptions.setHorizontalAlignment(HorizontalAlignment.Center);digitalOptions.setPassword("1234567890");// define list of signature options
List<SignOptions>listOptions=newArrayList<SignOptions>();listOptions.add(textOptions);listOptions.add(barcodeOptions);listOptions.add(qrcodeOptions);listOptions.add(digitalOptions);// sign document to file
signature.sign("signed.pdf",listOptions);
More resources
Advanced Usage Topics
To learn more about document eSign features, please refer to the advanced usage section.
GitHub Examples
You may easily run the code above and see the feature in action in our GitHub examples:
Along with full-featured .NET library we provide simple, but powerful free Apps. You are welcome to eSign PDF, Word, Excel, PowerPoint documents with free to use online GroupDocs Signature App.
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.