Search for Qrcode signatures in Ott file

Java native API allows to search for Qrcode signatures in already signed Ott files. Perform advanced e-signature search within your Ott documents using a few lines of code.


Download Free Trial

About GroupDocs.Signature for Java API

GroupDocs.Signature for Java provides Java API for processing documents using various signature types such as texts, images, digital certificates, barcodes, QR-codes, stamps or metadata. Users can add, delete, update, verify or search electronic signatures within PDFs, MS Word documents, MS Excel workbooks, MS PowerPoint presentations, Adobe Photoshop files and various image formats, with additional support for customizing signatures properties as needed.

How to search for Qrcode signatures in Ott

GroupDocs.Signature for Java makes it easier for Java developers to search for Qrcode signatures in Ott files from their applications by implementing a few easy steps.

  • Create a new instance of Signature class and pass source document path as a constructor parameter.
  • Instantiate the SearchOptions object according to your requirements and specify searching options.
  • Call Search method of Signature class instance and pass SearchOptions to it.
  • Process searching results accordingly to your demands.

System Requirements

GroupDocs.Signature for Java are supported on all major platforms and operating systems. Before executing the code below, please make sure that you have the following prerequisites installed on your system.

  • Operating systems: Microsoft Windows, Linux, MacOS
  • Development environments: NetBeans, Intellij IDEA, Eclipse, etc.
  • Java runtime: J2SE 6.0 and above
  • Download the latest version of GroupDocs.Signature for Java from Maven

        
// Set up input Ott file
String filePath = "input.ott";

// Instantiate Signature for input file
Signature signature = new Signature(filePath);

//Create search options
QrCodeSearchOptions options = new QrCodeSearchOptions();

// specify special pages to search on 
options.setAllPages(false);
// single page number
options.setPageNumber(1);
// specify text match type
options.setMatchType(TextMatchType.Contains);
// specify text pattern to search
options.setText("Text signature");
// return  Qrcode images for processing
options.setReturnContent(true);
// set up type of returned  Qrcode images
options.setReturnContentType(FileType.PNG);
                    
// search for Qrcode signatures in Ott document
List<QrCodeSignature> signatures = signature.search(QrCodeSignature.class, options);

// process signatures which were found 
signatures.forEach(item -> System.out.println(item.toString()));

Search for Qrcode electronic signatures Live Demo

Search the document for various electronic signatures to Ott files right now by visiting the GroupDocs.Signature App website.

No need to download API

No need to write any code

Just upload the source file

Get download link to save the file

Search for other Qrcode signatures using Java

“Electronic signatures search in various documents. Find signatures from the one of popular file formats as shown below.”

Search QRCODE in PDF

(Portable Document Format)

Search QRCODE in DOC

(Microsoft Word Binary Format)

Search QRCODE in DOCX

(Office 2007+ Word Document)

Search QRCODE in DOCM

(Microsoft Word 2007 Marco File)

Search QRCODE in DOT

(Microsoft Word Template Files)

Search QRCODE in DOTM

(Microsoft Word 2007+ Template File)

Search QRCODE in DOTX

(Microsoft Word Template File )

Search QRCODE in ODT

(OpenDocument Text File Format)

Search QRCODE in RTF

(Rich Text Format)

Search QRCODE in XLS

(Microsoft Excel Spreadsheet (Legacy))

Search QRCODE in XLSX

(Open XML Workbook)

Search QRCODE in XLSM

(Macro-enabled Spreadsheet)

Search QRCODE in XLSB

(Excel Binary Workbook)

Search QRCODE in CSV

(Comma Seperated Values)

Search QRCODE in ODS

(OpenDocument Spreadsheet)

Search QRCODE in OTS

(OpenDocument Spreadsheet Template)

Search QRCODE in XLTX

(Excel Template)

Search QRCODE in XLTM

(Excel Macro-Enabled Template)

Search QRCODE in PPT

(Microsoft PowerPoint 97-2003)

Search QRCODE in PPTX

(Open XML presentation Format)

Search QRCODE in PPS

(PowerPoint Slide Show)

Search QRCODE in PPSX

(PowerPoint Slide Show)

Search QRCODE in ODP

(OpenDocument Presentation Format)

Search QRCODE in OTP

(OpenDocument Standard Format)

Search QRCODE in POTX

(Microsoft PowerPoint Template Presentation)

Search QRCODE in POTM

(Microsoft PowerPoint Template File)

Search QRCODE in PPTM

(Macro-enabled Presentation File)

Search QRCODE in PPSM

(Macro-enabled Slide Show)

Search QRCODE in PNG

(Portable Network Graphic)

Search QRCODE in JPG

(Joint Photographic Expert Group Image)

Search QRCODE in BMP

(Bitmap Image File)

Search QRCODE in GIF

(Graphical Interchange Format)

Search QRCODE in TIFF

(Tagged Image File Format)

Search QRCODE in SVG

(Scalar Vector Graphics)

Search QRCODE in WEBP

(Raster Web Image Format)

Search QRCODE in WMF

(Windows Metafile)

Back to top
 English