Skip to content

Commit f604031

Browse files
committed
feat: add FAQ
1 parent 574b66d commit f604031

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

_includes/sidelist-faq.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<li><a href="/mrz-scanner/docs/web/faq/index.html" class="otherLinkColour">FAQ</a>
2+
</li>

faq/index.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
layout: default-layout
3+
needAutoGenerateSidebar: true
4+
needGenerateH3Content: true
5+
noTitleIndex: false
6+
title: MRZ Scanner JavaScript Edition - FAQ
7+
keywords: Documentation, MRZ Scanner JavaScript Edition, FAQ, Frequently Asked Questions
8+
breadcrumbText: FAQ
9+
description: MRZ Scanner JavaScript Edition Documentation Frequently Asked Questions
10+
permalink: /faq/index.html
11+
---
12+
13+
# Frequently Asked Questions
14+
15+
1. [Can the MRZ Scanner process static images, or does it only work with live cameras?](#can-the-mrz-scanner-process-static-images-or-does-it-only-work-with-live-cameras)
16+
2. [Does MRZ Scanner perform data validation?](#does-the-mrz-scanner-perform-data-validation)
17+
3. [How do I use the scanned result?](#how-do-i-use-the-scanned-result)
18+
19+
## Can the MRZ Scanner process static images, or does it only work with live cameras?
20+
21+
Yes, the MRZ Scanner can read from static images and image files, along with the typical use case of scanning from a live camera feed.
22+
23+
## Does the MRZ Scanner perform data validation?
24+
25+
**No**. MRZ Scanner JavaScript Edition performs all image capture, image enhancement, and MRZ parsing on-device, to give you full control of your data. The MRZ Scanner processes the data on the client device without passing the data to external servers. Your application must implement data validation on the decoded MRZ data after reading with the MRZ Scanner if your use case requires data validation.
26+
27+
28+
## How do I use the scanned result?
29+
30+
The simplest implementation uses the default UI and does not take action after scanning. You can customize the behavior by handling callbacks provided by the API. The [`launch()`]({{ site.api }}mrz-scanner.html#launch) method returns the scanned result as the type [`MRZResult`]({{ site.api }}mrz-scanner.html#mrzresult), which includes the image of the document, as well as the parsed MRZ data separated into fields.

0 commit comments

Comments
 (0)