A Textย electronic signature is an arbitrary text that is added to a document in a native way depending on the type of the document. GroupDocs.Signature provides the text signature feature and allows customizing a wide range of text settings - from font name, size and color to alignment, borders,ย shadow effects etc. This is how a text signature may look like:ย ย
How to eSign document with Text signature
Let’s try to add a text signature to a PDF programmatically.
To manipulate text signatures programmaticallyย GroupDocs.Signature providesย the TextSignOptionsย class and the whole workflow is as easy as follows:
Create a new instance ofย the Signatureย class and pass the source document path as a constructor parameter.
Instantiate the TextSignOptionsย object according to your requirements and specify the signature options.
This example shows how to add a text signature to a document.
using(Signaturesignature=newSignature("sample.pdf")){TextSignOptionsoptions=newTextSignOptions("John Smith"){// set signature positionLeft=100,Top=100,// set signature rectangleWidth=100,Height=30,// set Text color and FontForeColor=Color.Red,Font=newSignatureFont{Size=12,FamilyName="Comic Sans MS"}};// sign document to filesignature.Sign("sample_signed.pdf",options);}
Advanced Usage Topics
To learn more about document eSign features, please refer to theย advanced usage section.
More resources
GitHub Examples
You may easily run the code above and see the feature in action in ourย GitHub examples: