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.
using(Signaturesignature=newSignature("sample.pdf")){// search for signatures in documentList<BarcodeSignature>signatures=signature.Search<BarcodeSignature>(SignatureType.Barcode);Console.WriteLine("\nSource document contains following signatures.");foreach(varbarcodeSignatureinsignatures){Console.WriteLine("Barcode signature found at page {0} with type {1} and text {2}",barcodeSignature.PageNumber,barcodeSignature.EncodeType,barcodeSignature.Text);}}
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: