A Text electronic signature is an arbitrary text that is added to a document in a native way dependent on document type. GroupDocs.Signature provides text signature feature and allows to customize wide range of text settings - from font name, size and color to alignment, borders, shadow effects etc. This is how text signature may look like:
How to eSign document with Text signature
o manipulate with text signatures programmatically GroupDocs.Signature provides TextSignOptions class and the whole workflow as easy as follows:
Create new instance of Signature class and pass source document path as a constructor parameter.
Instantiate the TextSignOptions object according to your requirements and specify Text signature options.
This example shows how to add Text signature to document.
Signaturesignature=newSignature("sample.pdf");TextSignOptionsoptions=newTextSignOptions("John Smith");// set signature position
options.setLeft(100);options.setTop(100);// set signature rectangle
options.setWidth(100);options.setHeight(30);// set text color and Font
options.setForeColor(Color.RED);SignatureFontsignatureFont=newSignatureFont();signatureFont.setSize(12);signatureFont.setFamilyName("Comic Sans MS");options.setFont(signatureFont);// sign document to file
signature.sign("sample_signed.pdf",options);
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.