There might be the case when your document is not physically located on the disk. Instead, you have the document in the form of a stream. In this case, to avoid the overhead of saving stream as a file on disk, GroupDocs.Signature enables you to work with document from streams directly. Please be aware that Signature object does not dispose passed stream.
The following are the steps to be followed:
Obtain document stream;
Pass opened stream to Signature class constructor.
Following code snippet serves this purpose.
InputStreamstream=newFileInputStream("sample.pdf");Signaturesignature=newSignature(stream);QrCodeSignOptionsoptions=newQrCodeSignOptions("JohnSmith");options.setEncodeType(QrCodeTypes.QR);options.setLeft(100);options.setTop(100);// sign document to file
signature.sign("SampleSigned.pdf",options);
More resources
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.