-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #150 from Dynamsoft/Tom-Dynamsoft-patch-2
focus more on dbr.bundle.js
- Loading branch information
Showing
1 changed file
with
4 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -203,26 +203,14 @@ If the test doesn't go as expected, you can [contact us](https://www.dynamsoft.c | |
To utilize the SDK, the initial step involves including the corresponding resource files: | ||
* `core.js` encompasses common classes, interfaces, and enumerations that are shared across all Dynamsoft SDKs. | ||
* `core.js` encompasses common classes, interfaces, and enumerations shared across all Dynamsoft SDKs. | ||
* `license.js` introduces the `LicenseManager` class, which manages the licensing for all Dynamsoft SDKs. | ||
* `utility.js` encompasses auxiliary classes that are shared among all Dynamsoft SDKs. | ||
* `dbr.js` defines interfaces and enumerations specifically tailored to the barcode reader module. | ||
* `utility.js` encompasses auxiliary classes shared among all Dynamsoft SDKs. | ||
* `dbr.js` defines interfaces and enumerations tailored to the barcode reader module. | ||
* `cvr.js` introduces the `CaptureVisionRouter` class, which governs the entire image processing workflow. | ||
* `dce.js` comprises classes that offer camera support and basic user interface functionalities. | ||
For simplification, starting from version 10.0.21, we introduced `dbr.bundle.js`. Including this file is equivalent to incorporating all six packages. | ||
* [email protected]/dist/core.js | ||
* [email protected]/dist/license.js | ||
* [email protected]/dist/utility.js | ||
* [email protected]/dist/dbr.js | ||
* [email protected]/dist/cvr.js | ||
* [email protected]/dist/dce.js | ||
Equivalent to | ||
* [email protected]/dist/dbr.bundle.js | ||
In the following chapters, we will use `dbr.bundle.js`. | ||
To simplify things, starting from version 10.0.21, we introduced `dbr.bundle.js`, which combines all six of the above files. In the following chapters, we will use `dbr.bundle.js`. | ||
#### Use a public CDN | ||
|