Skip to content

Commit 481e1a1

Browse files
committed
update links to parent index
1 parent 45d87ab commit 481e1a1

19 files changed

+35
-35
lines changed

barcode-reader/general/avoid-incorrect-barcode-results.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ description: How to avoid incorrect barcode results?
66
needAutoGenerateSidebar: false
77
---
88

9-
# How to avoid incorrect barcode results?
10-
119
[<< Back to FAQ index](index.md)
1210

11+
# How to avoid incorrect barcode results?
12+
1313
- One method is to raise the value of [minResultConfidence](https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/api-reference/interface/RuntimeSettings.html#minresultconfidence) of the `RuntimeSettings` to a value of 50 or higher. It is set to 30 by default.
1414
- If the issue has to do with the length of the text result, you can try setting a minimum length for the barcode text(s) that are returned by the SDK. By setting the [minBarcodeTextLength](https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/api-reference/interface/RuntimeSettings.html#minbarcodetextlength) property of the `RuntimeSettings`, the SDK can ignore results that are consistently coming out shorter than expected.

barcode-reader/general/avoid-incorrect-results.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ needAutoGenerateSidebar: false
77
/avoid-incorrect-results.html
88
---
99

10-
## How to filter incorrect results with the barcode result length?
11-
1210
[<< Back to FAQ index](index.md)
1311

12+
## How to filter incorrect results with the barcode result length?
13+
1414
One way to avoid this is to set the [minBarcodeTextLength](https://www.dynamsoft.com/barcode-reader/docs/server/programming/cplusplus/api-reference/simplified-barcode-reader-settings.html#:~:text=int%20minResultConfidence%3B-,int%20minBarcodeTextLength%3B,-char%20barcodeTextRegExPattern%5B) in [SimplifiedBarcodeReaderSettings](https://www.dynamsoft.com/barcode-reader/docs/server/programming/cplusplus/api-reference/simplified-barcode-reader-settings.html#:~:text=SimplifiedBarcodeReaderSettings-,SimplifiedBarcodeReaderSettings,-The%20SimplifiedBarcodeReaderSettings%20struct) of [SimplifiedCaptureVisionSettings](https://www.dynamsoft.com/capture-vision/docs/server/programming/cplusplus/api-reference/capture-vision-router/structs/simplified-capture-vision-settings.html?product=dbr&repoType=server) to the correct length that the barcode results should be. Say that the barcode results should at least be 10 characters long, and the results are sometimes coming out with just 6 or 7 characters. By setting the minBarcodeTextLength to 10, the SDK will ignore results that are shorter than 10 characters.

barcode-reader/general/check-current-version.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ description: How to check the version of the JS SDK I am currently using?
66
needAutoGenerateSidebar: false
77
---
88

9-
# How to check the version of the JS SDK I am currently using?
10-
119
[<< Back to FAQ index](index.md)
1210

11+
# How to check the version of the JS SDK I am currently using?
12+
1313
There are multiple ways to check the version currently being used -
1414

1515
- The first way is to use the [version API](https://www.dynamsoft.com/barcode-reader/programming/javascript/api-reference/InitializationControl.html?ver=latest#version). Using this API in the browser console should print out the version of the library being used by the web app.

barcode-reader/general/dbr-supports-pdf.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ description: Can Barcode Reader SDK read PDF files? Do I need to pay for this fe
66
needAutoGenerateSidebar: false
77
---
88

9-
## Can Barcode Reader SDK read PDF files? Do I need to pay for this feature?
10-
119
[<< Back to FAQ index](index.md)
1210

11+
## Can Barcode Reader SDK read PDF files? Do I need to pay for this feature?
12+
1313
Dynamsoft Barcode Reader does indeed support reading barcodes from PDF files (see [Features](https://www.dynamsoft.com/barcode-reader/features/#Decode-Barcodes)). The only exception is the JavaScript and Mobile editions currently.
1414

1515
No extra license is required to read from PDF files.

barcode-reader/general/different-editions-of-dbr.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ needAutoGenerateSidebar: false
77
breadcrumbText: FAQ
88
---
99

10-
## Which edition of Barcode Reader should I use?
11-
1210
[<< Back to FAQ index](index.md)
1311

12+
## Which edition of Barcode Reader should I use?
13+
1414
The edition of the SDK depends on the application environment/type, which is one of: a desktop app, native mobile app, web app (server-side), or web app (client-side).
1515

1616
- desktop app: Windows/Linux edition

barcode-reader/general/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ noTitleIndex: true
1313

1414
Please use the links below to find answers to common questions and configuration guidance.
1515

16+
- [Does DBR support PDF?](dbr-supports-pdf.html)
1617
- [How to avoid incorrect barcode results?](avoid-incorrect-barcode-results.html)
1718
- [How to filter incorrect results with the barcode result length?](avoid-incorrect-results.html)
1819
- [Check Current Version](check-current-version.html)

barcode-reader/general/scan-specific-page.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ description: How to scan specific pages of a pdf file?
66
needAutoGenerateSidebar: false
77
---
88

9-
## How to scan specific pages of a pdf file?
10-
119
[<< Back to FAQ index](index.md)
1210

11+
## How to scan specific pages of a pdf file?
12+
1313
We are planning to add `Pages` parameter of the `ImageParameterOptions` Parameter.
1414

1515
Currently you will need to manually filter out the extra results from the returned retults or you can convert the specific pages pdf file to single image files and then decode the images.

barcode-reader/general/scan-us-drivers-license.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ description: How to scan barcodes on US Driver's Licenses and extract the inform
66
needAutoGenerateSidebar: false
77
---
88

9-
## How to scan barcodes on US Driver's Licenses and extract the information?
10-
119
[<< Back to FAQ index](index.md)
1210

11+
## How to scan barcodes on US Driver's Licenses and extract the information?
12+
1313
The SDK can indeed scan driver license barcodes and extract all the information that is encoded in the barcode. The best resources to reference in order to do this are the samples available:
1414

1515
- [JavaScript edition (most popular use case)](https://github.com/Dynamsoft/dbr-browser-samples/blob/master/4.use-case/2.read-a-drivers-license.html)

barcode-reader/general/supported-barcode-formats.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ description: What barcode types are supported by Dynamsoft Barcode Reader?
66
needAutoGenerateSidebar: false
77
---
88

9-
## What barcode types are supported by Dynamsoft Barcode Reader?
10-
119
[<< Back to FAQ index](index.md)
1210

11+
## What barcode types are supported by Dynamsoft Barcode Reader?
12+
1313
The full list of supported barcode formats can be found [here](https://www.dynamsoft.com/barcode-reader/docs/core/introduction/?ver=latest#supported-barcode-formats).

license/dbr-free-trial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ description: What I need to know about trial licenses?
66
needAutoGenerateSidebar: false
77
---
88

9-
## What I need to know about trial licenses?
10-
119
[<< Back to FAQ index](index.md)
1210

11+
## What I need to know about trial licenses?
12+
1313
To get a free trial of the SDK, please download it from [our website](https://www.dynamsoft.com/barcode-reader/downloads/).
1414

1515
The main way to get the trial license is via the [Request a Trial License](https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=docs){:target="\_blank"} link through which you can extend your trial license once your original expires. The trial can be extended twice, for 15 days each, and a total of 30 days.

0 commit comments

Comments
 (0)