Qrcode signatures verification for Dotx files

API for Java provides opportunity to verify Qrcode signatures at Dotx documents. Verification of e-signatures inside your Dotx documents might be performed quickly and easily.


Download Free Trial

Discover new GroupDocs.Signature for Java API features

GroupDocs.Signature for Java API provides wide range of ways to process numerous documents formats by using electronic signatures. Many types of digital signatures as texts, images, digital certificates, barcodes, QR-codes, stamps or metadata are supported. Customers can add, remove, edit, validate or search digital signatures at PDFs, MS Word documents, MS Excel workbooks, MS PowerPoint presentations, Adobe Photoshop files and various image formats. Astonishing number of additional features and settings are available.

How to validate Qrcode signatures in your Dotx document

GroupDocs.Signature for Java includes useful features like verification of Qrcode signatures placed at Dotx documents. Use this opportunity without implementing extra code.

  • Firstly, instantiate Signature class providing as a constructor parameter path to a document which is supposed to be verified.
  • Secondly, create a new VerifyOptions object and set up all required properties.
  • Finally, invoke Signature’s object Verify method passing VerifyOptions instance.
  • Then process verification results.

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 Dotx file
String filePath = "input.dotx";

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

//Provide verification options
QrCodeVerifyOptions options = new QrCodeVerifyOptions();

// process only first page
options.setPagesSetup(new PagesSetup());
options.setPageNumber(1);
options.setAllPages(false);
// specify text match type
options.setMatchType(TextMatchType.StartsWith);
// specify text pattern to search
options.setText("QrCode text");
                    
// Verify document signatures
VerificationResult result = signature.verify(options);

//process result
if (result.isValid())
{
    //..
}

Signing with Qrcode signatures Live Demo

Add various electronic signatures to Dotx file 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

Verify other Qrcode signatures using Java

“Verification of electronic signatures placed in various documents. Check quality of signatures in the popular file formats as revealed below.”

Verify QRCODE in PDF

(Portable Document Format)

Verify QRCODE in DOC

(Microsoft Word Binary Format)

Verify QRCODE in DOCX

(Office 2007+ Word Document)

Verify QRCODE in DOCM

(Microsoft Word 2007 Marco File)

Verify QRCODE in DOT

(Microsoft Word Template Files)

Verify QRCODE in DOTM

(Microsoft Word 2007+ Template File)

Verify QRCODE in ODT

(OpenDocument Text File Format)

Verify QRCODE in OTT

(OpenDocument Standard Format)

Verify QRCODE in RTF

(Rich Text Format)

Verify QRCODE in XLS

(Microsoft Excel Spreadsheet (Legacy))

Verify QRCODE in XLSX

(Open XML Workbook)

Verify QRCODE in XLSM

(Macro-enabled Spreadsheet)

Verify QRCODE in XLSB

(Excel Binary Workbook)

Verify QRCODE in CSV

(Comma Seperated Values)

Verify QRCODE in ODS

(OpenDocument Spreadsheet)

Verify QRCODE in OTS

(OpenDocument Spreadsheet Template)

Verify QRCODE in XLTX

(Excel Template)

Verify QRCODE in XLTM

(Excel Macro-Enabled Template)

Verify QRCODE in PPT

(Microsoft PowerPoint 97-2003)

Verify QRCODE in PPTX

(Open XML presentation Format)

Verify QRCODE in PPS

(PowerPoint Slide Show)

Verify QRCODE in PPSX

(PowerPoint Slide Show)

Verify QRCODE in ODP

(OpenDocument Presentation Format)

Verify QRCODE in OTP

(OpenDocument Standard Format)

Verify QRCODE in POTX

(Microsoft PowerPoint Template Presentation)

Verify QRCODE in POTM

(Microsoft PowerPoint Template File)

Verify QRCODE in PPTM

(Macro-enabled Presentation File)

Verify QRCODE in PPSM

(Macro-enabled Slide Show)

Verify QRCODE in PNG

(Portable Network Graphic)

Verify QRCODE in JPG

(Joint Photographic Expert Group Image)

Verify QRCODE in BMP

(Bitmap Image File)

Verify QRCODE in GIF

(Graphical Interchange Format)

Verify QRCODE in TIFF

(Tagged Image File Format)

Verify QRCODE in SVG

(Scalar Vector Graphics)

Verify QRCODE in WEBP

(Raster Web Image Format)

Verify QRCODE in WMF

(Windows Metafile)

Back to top
 English