Verify Barcode signatures in the document

Overview

GroupDocs.Signature provides the BarcodeVerifyOptions class to specify different options for verifying Barcode signatures.

Here are the steps to verify a Barcode signature within the document with GroupDocs.Signature:

This example shows how to verify Barcode signature in the document.

 // The path to the documents directory.
  const filePath = Constants.SAMPLE_SIGNED_MULTI; 
  // Initialize Signature instance
  const signature = new signatureLib.Signature(filePath);

  // Initialize BarcodeVerifyOptions
  const options = new signatureLib.BarcodeVerifyOptions();
  options.setAllPages(true); // This value is set by default
  options.setText('John');
  options.setMatchType(signatureLib.TextMatchType.Contains);

  // Verify document signatures
  const result = signature.verify(options);

  if (result.isValid()) {
    console.log('\nDocument was verified successfully!');
  } else {
    console.log('\nDocument failed the verification process.');
  }

More resources

GitHub Examples

You may easily run the code above and see the feature in action in ourΒ GitHub examples:

Free Online Apps

Along with the full-featured .NET library, we provide simple but powerful free online apps.

To generate barcodes and/or sign your files with barcodes for free, you can use the Barcode Generator online app.

To sign PDF, Word, Excel, PowerPoint, and other documents you can use the other online apps from the GroupDocs.Signature App Product Family.