This example shows how to make advanced search for Text signature in the document.
Signaturesignature=newSignature("sample.pdf");PagesSetuppage=newPagesSetup();page.setFirstPage(true);page.setLastPage(true);page.setOddPages(false);page.setEvenPages(false);TextSearchOptionsoptions=newTextSearchOptions();options.setAllPages(false);options.setPageNumber(1);options.setMatchType(TextMatchType.Exact);options.setText("John Smith");// search for text signatures in document
List<TextSignature>signatures=signature.search(TextSignature.class,options);System.out.print("\nSource document contains following text signature(s).");// enumerate all signature for output
//foreach to while statements conversion
try{for(TextSignaturesign:signatures){if(sign!=null){System.out.print("Found Text signature at page "+sign.getPageNumber()+" with type ["+sign.getSignatureImplementation()+"] and text '"+sign.getText()+"'.");System.out.print("Location at "+sign.getLeft()+"-"+sign.getTop()+". Size is "+sign.getWidth()+"x"+sign.getHeight()+".");}}}catch(Exceptionex){System.out.print("System Exception: "+ex.getMessage());}
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.