GroupDocs.Signature provides an easy and straightforward way to find all Barcode signatures that are present in a document. For the most simpler use case - just find all Barcode signatures within document its only needed to instantiate BarcodeSearchOptions class and pass it to search method.
Here are the exact steps to search for Barcode signatures within the document with GroupDocs.Signature:
Create new instance of Signature class and pass source document path as a constructor parameter.
Instantiate the BarcodeSearchOptions object according to your requirements and specify search options
This example shows how to search for Barcode signature in the document.
Signaturesignature=newSignature("sample.pdf");BarcodeSearchOptionsoptions=newBarcodeSearchOptions();// 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
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.