Analyze SignResult result to check newly created signatures if needed.
This example shows how to setup extra digital signature appearance. See SignResult
Signaturesignature=newSignature("sample.docx");DigitalSignOptionsoptions=newDigitalSignOptions("certificate.pfx");// certifiate password
options.setPassword("1234567890");// digital certificate details
options.setReason("Sign");options.setContact("JohnSmith");options.setLocation("Office1");// image as digital certificate appearance on document pages
options.setImageFilePath("sample.jpg");//
options.setAllPages(true);options.setWidth(0);options.setHeight(60);options.setVerticalAlignment(VerticalAlignment.Bottom);options.setHorizontalAlignment(HorizontalAlignment.Right);Paddingpadding=newPadding();padding.setBottom(10);padding.setRight(10);options.setMargin(padding);// Setup signature line appearance.
// This appearance will add Signature Line on the first page.
// Could be useful for .xlsx files.
options.setAppearance(newDigitalSignatureAppearance("John Smith","Title","jonny@test.com"));SignResultsignResult=signature.sign("signed.docx",options);// analyzing result
System.out.print("List of newly created signatures:");intnumber=1;for(BaseSignaturetemp:signResult.getSucceeded()){System.out.print("Signature #"+number+++": Type: "+temp.getSignatureType()+" Id:"+temp.getSignatureId()+",Location: "+temp.getLeft()+"x"+temp.getTop()+". Size: "+temp.getWidth()+"x"+temp.getHeight());}
Sign Pdf document with Text signature Sticker appearance
This example shows how to add Text signature to Pdf document with sticker look. See SignResult
Signaturesignature=newSignature("sample.docx");{TextSignOptionsoptions=newTextSignOptions("John Smith");// set signature position
options.setLeft(100);options.setTop(100);// set signature rectangle
options.setWidth(100);options.setHeight(30);// setup proper signature implementation
options.setSignatureImplementation(TextSignatureImplementation.Sticker);PdfTextStickerAppearanceappearance=newPdfTextStickerAppearance();// select sticker icon
appearance.setIcon(PdfTextStickerIcon.Star);// setup if popup annotation will be opened by default
appearance.setOpened(false);// text content of an annotation
appearance.setContents("Sample");appearance.setSubject("Sample subject");appearance.setTitle("Sample Title");options.setAppearance(appearance);// set signature alignment
options.setVerticalAlignment(VerticalAlignment.Bottom);options.setHorizontalAlignment(HorizontalAlignment.Right);Paddingmargin=newPadding();margin.setBottom(20);margin.setRight(20);options.setMargin(margin);// set text color and Font
options.setForeColor(Color.RED);SignatureFontfont=newSignatureFont();font.setSize(12);font.setFamilyName("Comic Sans MS");options.setFont(font);// sign document to file
signature.sign("signed.docx",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.