Verify QR-code signatures
GroupDocs.Signature provides different properties in QrCodeVerifyOptions class to specify verification of QR-code signatures.
Here are the steps to verify QR-code signature within the document with GroupDocs.Signature:
- Create new instance of Signature class and pass source document path as a constructor parameter. *Instantiate the QrCodeVerifyOptions object according to your requirements and specify verification options
- Call Verify method of Signature class instance and pass QrCodeVerifyOptionsto it.
- Analyze VerificationResult result if needed.
This example shows how to verify QR-code signature in the document. See VerificationResult
using (Signature signature = new Signature("sample.pdf"))
{
QrCodeVerifyOptions options = new QrCodeVerifyOptions()
{
// specify if all pages shoudl be verified
AllPages = false,
PagesSetup = new PagesSetup() { FirstPage = false, LastPage = true, OddPages = false, EvenPages = true },
// specify text pattern
Text = "John",
// specify verification text pattern
MatchType = TextMatchType.Contains,
// specify types of QR code to verify
EncodeType = QrCodeTypes.QR
};
// verify document signatures
VerificationResult result = signature.Verify(options);
if (result.IsValid)
{
Console.WriteLine("\nDocument was verified successfully!");
}
else
{
Console.WriteLine("\nDocument failed verification process.");
}
}
More resources
GitHub Examples
You may easily run the code above and see the feature in action in our GitHub examples:
- GroupDocs.Signature for .NET examples, plugins, and showcase
- GroupDocs.Signature for Java examples, plugins, and showcase
- Document Signature for .NET MVC UI Example
- Document Signature for .NET App WebForms UI Example
- Document Signature for Java App Dropwizard UI Example
- Document Signature for Java Spring UI Example
Free Online App
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.