dynamsoft-barcode-reader-bundle 11.4.2000 → 11.4.2001-beta-202604230243
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.html +35 -36
- package/README.md +2 -2
- package/dist/dbr.bundle.esm.js +2 -2
- package/dist/dbr.bundle.js +2 -2
- package/dist/dbr.bundle.mjs +2 -2
- package/dist/dbr.bundle.worker.js +2 -2
- package/package.json +28 -2
- package/samples.url +1 -1
package/README.html
CHANGED
|
@@ -229,42 +229,41 @@
|
|
|
229
229
|

|
|
230
230
|
 -->
|
|
231
231
|
<p>In this guide, you will learn step by step on how to integrate the DBR-JS SDK into your website.</p>
|
|
232
|
-
<
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
</ul>
|
|
232
|
+
<!-- <span style="font-size:20px">Table of Contents</span>
|
|
233
|
+
|
|
234
|
+
- [Barcode Reader for Your Website - Foundational API Guide](#barcode-reader-for-your-website---foundational-api-guide)
|
|
235
|
+
- [Hello World - Simplest Implementation](#hello-world---simplest-implementation)
|
|
236
|
+
- [Understand the code](#understand-the-code)
|
|
237
|
+
- [About the code](#about-the-code)
|
|
238
|
+
- [Run the example](#run-the-example)
|
|
239
|
+
- [Preparing the SDK](#preparing-the-sdk)
|
|
240
|
+
- [Step 1: Include the SDK](#step-1-include-the-sdk)
|
|
241
|
+
- [Step 2: Prepare the SDK](#step-2-prepare-the-sdk)
|
|
242
|
+
- [1. Specify the license](#1-specify-the-license)
|
|
243
|
+
- [2. \[Optional\] Specify the location of the "engine" files](#2-optional-specify-the-location-of-the-engine-files)
|
|
244
|
+
- [Using the SDK](#using-the-sdk)
|
|
245
|
+
- [Step 1: Preload the module](#step-1-preload-the-module)
|
|
246
|
+
- [Step 2: Create a CaptureVisionRouter object](#step-2-create-a-capturevisionrouter-object)
|
|
247
|
+
- [Step 3: Connect an image source](#step-3-connect-an-image-source)
|
|
248
|
+
- [Step 4: Register a result receiver](#step-4-register-a-result-receiver)
|
|
249
|
+
- [Step 5: Start process video frames](#step-5-start-process-video-frames)
|
|
250
|
+
- [Customizing the process](#customizing-the-process)
|
|
251
|
+
- [1. Adjust the preset template settings](#1-adjust-the-preset-template-settings)
|
|
252
|
+
- [1.1. Change barcode settings](#11-change-barcode-settings)
|
|
253
|
+
- [1.2. Retrieve the original image](#12-retrieve-the-original-image)
|
|
254
|
+
- [1.3. Change reading frequency to save power](#13-change-reading-frequency-to-save-power)
|
|
255
|
+
- [1.4. Specify a scan region](#14-specify-a-scan-region)
|
|
256
|
+
- [2. Edit the preset templates directly](#2-edit-the-preset-templates-directly)
|
|
257
|
+
- [3. \[Important\] Filter the results](#3-important-filter-the-results)
|
|
258
|
+
- [Method 1: Verify results across multiple frames](#method-1-verify-results-across-multiple-frames)
|
|
259
|
+
- [Method 2: Eliminate redundant results detected within a short time frame](#method-2-eliminate-redundant-results-detected-within-a-short-time-frame)
|
|
260
|
+
- [4. Add feedback](#4-add-feedback)
|
|
261
|
+
- [Customizing the UI](#customizing-the-ui)
|
|
262
|
+
- [Documentation](#documentation)
|
|
263
|
+
- [API Reference](#api-reference)
|
|
264
|
+
- [How to Upgrade](#how-to-upgrade)
|
|
265
|
+
- [Release Notes](#release-notes)
|
|
266
|
+
- [Next Steps](#next-steps) -->
|
|
268
267
|
<h2 id="hello-world---simplest-implementation">Hello World - Simplest Implementation</h2>
|
|
269
268
|
<p>Let's start with the "Hello World" example of the DBR-JS SDK which demonstrates how to use the minimum code to enable a web page to read barcodes from a live video stream. </p>
|
|
270
269
|
<p><strong>Basic Requirements</strong></p>
|
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
|
|
13
13
|
In this guide, you will learn step by step on how to integrate the DBR-JS SDK into your website.
|
|
14
14
|
|
|
15
|
-
<span style="font-size:20px">Table of Contents</span>
|
|
15
|
+
<!-- <span style="font-size:20px">Table of Contents</span>
|
|
16
16
|
|
|
17
17
|
- [Barcode Reader for Your Website - Foundational API Guide](#barcode-reader-for-your-website---foundational-api-guide)
|
|
18
18
|
- [Hello World - Simplest Implementation](#hello-world---simplest-implementation)
|
|
@@ -46,7 +46,7 @@ In this guide, you will learn step by step on how to integrate the DBR-JS SDK in
|
|
|
46
46
|
- [API Reference](#api-reference)
|
|
47
47
|
- [How to Upgrade](#how-to-upgrade)
|
|
48
48
|
- [Release Notes](#release-notes)
|
|
49
|
-
- [Next Steps](#next-steps)
|
|
49
|
+
- [Next Steps](#next-steps) -->
|
|
50
50
|
|
|
51
51
|
## Hello World - Simplest Implementation
|
|
52
52
|
|