This example shows how to make advanced search for Barcode signature in the document.
Signaturesignature=newSignature("sample.pdf");BarcodeSearchOptionsoptions=newBarcodeSearchOptions();options.setAllPages(true);// this value is set by default
// single page number
options.setPageNumber(1);// setup extended search in pages setup
PagesSetuppagesSetup=newPagesSetup();pagesSetup.setFirstPage(true);pagesSetup.setLastPage(true);pagesSetup.setOddPages(false);pagesSetup.setEvenPages(false);options.setPagesSetup(pagesSetup);// specify special barcode type to search
options.setEncodeType(BarcodeTypes.Code39Standard);// specify text match type
options.setMatchType(TextMatchType.Contains);// specify text pattern to search
options.setText("12345678");// search for signatures in document
List<BarcodeSignature>signatures=signature.search(BarcodeSignature.class,options);System.out.print("\nSource document contains following signatures.");for(BarcodeSignaturebarcodeSignature:signatures){System.out.print("Barcode signature found at page "+barcodeSignature.getPageNumber()+" with type "+barcodeSignature.getEncodeType()+" and text "+barcodeSignature.getText());}
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.