You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 1.hello-world/1.minimum-code.html
+11-12Lines changed: 11 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -13,25 +13,24 @@ <h2>Minimum Code to Read Barcodes</h2>
13
13
<buttonid='readBarcode'>Read Barcode via Camera</button>
14
14
<script>
15
15
/** LICENSE ALERT - README
16
-
* The library requires a license to work, the APIs organizationID and handshakeCode specify how to acquire a license.
17
-
* If nothing is specified, a 7-day (public) trial license will be used by default which is the case in this sample.
16
+
* The library requires a license to work, you use the API organizationID to tell the program where to fetch your license.
17
+
* If the Organizaion ID is not specified, a 7-day (public) trial license will be used by default which is the case in this sample.
18
18
* Note that network connection is required for this license to work.
19
19
*/
20
20
21
-
/* When using your own license, please uncomment the following lines and fill in your own information. */
22
-
/* For more information, please refer to https://www.dynamsoft.com/license-tracking/docs/about/licensefaq.html?ver=latest#how-to-use-a-trackable-license. */
23
-
21
+
/* When using your own license, uncomment the following line and specify your Organization ID. */
// Dynamsoft.DBR.BarcodeReader.sessionPassword = "PASSWORD-TO-PROTECT-YOUR-LICENSE"; // Important field to protect your license.
27
-
// Dynamsoft.DBR.BarcodeReader.licenseServer = ["YOUR-OWN-MAIN-LTS", "YOUR-OWN-STANDBY-LTS"]; // Ignore this line if you are using Dynamsoft-hosting LTS
28
-
24
+
25
+
/* If you don't have a license yet, you can request a trial on this page: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&package=js&utm_source=github */
26
+
/* For more information, please refer to https://www.dynamsoft.com/license-tracking/docs/about/licensefaq.html?ver=latest#how-to-use-a-trackable-license. */
27
+
29
28
/* The API "productKeys" is an alternative way to license the library, the major difference is that it does not require a network. Contact support@dynamsoft.com for more information. */
Copy file name to clipboardExpand all lines: 1.hello-world/2.read-an-image.html
+10-11Lines changed: 10 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -24,23 +24,22 @@ <h2>Read An Existing Image</h2>
24
24
</div>
25
25
<script>
26
26
/** LICENSE ALERT - README
27
-
* The library requires a license to work, the APIs organizationID and handshakeCode specify how to acquire a license.
28
-
* If nothing is specified, a 7-day (public) trial license will be used by default which is the case in this sample.
27
+
* The library requires a license to work, you use the API organizationID to tell the program where to fetch your license.
28
+
* If the Organizaion ID is not specified, a 7-day (public) trial license will be used by default which is the case in this sample.
29
29
* Note that network connection is required for this license to work.
30
30
*/
31
31
32
-
/* When using your own license, please uncomment the following lines and fill in your own information. */
33
-
/* For more information, please refer to https://www.dynamsoft.com/license-tracking/docs/about/licensefaq.html?ver=latest#how-to-use-a-trackable-license. */
34
-
32
+
/* When using your own license, uncomment the following line and specify your Organization ID. */
// Dynamsoft.DBR.BarcodeReader.sessionPassword = "PASSWORD-TO-PROTECT-YOUR-LICENSE"; // Important field to protect your license.
38
-
// Dynamsoft.DBR.BarcodeReader.licenseServer = ["YOUR-OWN-MAIN-LTS", "YOUR-OWN-STANDBY-LTS"]; // Ignore this line if you are using Dynamsoft-hosting LTS
39
-
35
+
36
+
/* If you don't have a license yet, you can request a trial on this page: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&package=js&utm_source=github */
37
+
/* For more information, please refer to https://www.dynamsoft.com/license-tracking/docs/about/licensefaq.html?ver=latest#how-to-use-a-trackable-license. */
38
+
40
39
/* The API "productKeys" is an alternative way to license the library, the major difference is that it does not require a network. Contact support@dynamsoft.com for more information. */
Copy file name to clipboardExpand all lines: 1.hello-world/3.read-video-angular/src/app/dbr.ts
+6-7Lines changed: 6 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,17 @@
1
1
importDBRfrom"dynamsoft-javascript-barcode";
2
2
3
3
/** LICENSE ALERT - README
4
-
* The library requires a license to work, the APIs organizationID and handshakeCode specify how to acquire a license.
5
-
* If nothing is specified, a 7-day (public) trial license will be used by default which is the case in this sample.
4
+
* The library requires a license to work, you use the API organizationID to tell the program where to fetch your license.
5
+
* If the Organizaion ID is not specified, a 7-day (public) trial license will be used by default which is the case in this sample.
6
6
* Note that network connection is required for this license to work.
7
7
*/
8
8
9
-
/* When using your own license, please uncomment the following lines and fill in your own information. */
10
-
/* For more information, please refer to https://www.dynamsoft.com/license-tracking/docs/about/licensefaq.html?ver=latest#how-to-use-a-trackable-license. */
9
+
/* When using your own license, uncomment the following line and specify your Organization ID. */
// DBR.BarcodeReader.sessionPassword = "PASSWORD-TO-PROTECT-YOUR-LICENSE"; // Important field to protect your license.
15
-
// DBR.BarcodeReader.licenseServer = ["YOUR-OWN-MAIN-LTS", "YOUR-OWN-STANDBY-LTS"]; // Ignore this line if you are using Dynamsoft-hosting LTS
12
+
13
+
/* If you don't have a license yet, you can request a trial on this page: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&package=js&utm_source=github */
14
+
/* For more information, please refer to https://www.dynamsoft.com/license-tracking/docs/about/licensefaq.html?ver=latest#how-to-use-a-trackable-license. */
16
15
17
16
/* The API "productKeys" is an alternative way to license the library, the major difference is that it does not require a network. Contact support@dynamsoft.com for more information. */
Copy file name to clipboardExpand all lines: 1.hello-world/4.read-video-react/src/dbr.js
+6-7Lines changed: 6 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,17 @@
1
1
importDBRfrom"dynamsoft-javascript-barcode";
2
2
3
3
/** LICENSE ALERT - README
4
-
* The library requires a license to work, the APIs organizationID and handshakeCode specify how to acquire a license.
5
-
* If nothing is specified, a 7-day (public) trial license will be used by default which is the case in this sample.
4
+
* The library requires a license to work, you use the API organizationID to tell the program where to fetch your license.
5
+
* If the Organizaion ID is not specified, a 7-day (public) trial license will be used by default which is the case in this sample.
6
6
* Note that network connection is required for this license to work.
7
7
*/
8
8
9
-
/* When using your own license, please uncomment the following lines and fill in your own information. */
10
-
/* For more information, please refer to https://www.dynamsoft.com/license-tracking/docs/about/licensefaq.html?ver=latest#how-to-use-a-trackable-license. */
9
+
/* When using your own license, uncomment the following line and specify your Organization ID. */
// DBR.BarcodeReader.sessionPassword = "PASSWORD-TO-PROTECT-YOUR-LICENSE"; // Important field to protect your license.
15
-
// DBR.BarcodeReader.licenseServer = ["YOUR-OWN-MAIN-LTS", "YOUR-OWN-STANDBY-LTS"]; // Ignore this line if you are using Dynamsoft-hosting LTS
12
+
13
+
/* If you don't have a license yet, you can request a trial on this page: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&package=js&utm_source=github */
14
+
/* For more information, please refer to https://www.dynamsoft.com/license-tracking/docs/about/licensefaq.html?ver=latest#how-to-use-a-trackable-license. */
16
15
17
16
/* The API "productKeys" is an alternative way to license the library, the major difference is that it does not require a network. Contact support@dynamsoft.com for more information. */
Copy file name to clipboardExpand all lines: 1.hello-world/5.read-video-vue/src/dbr.js
+6-7Lines changed: 6 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,17 @@
1
1
importDBRfrom"dynamsoft-javascript-barcode";
2
2
3
3
/** LICENSE ALERT - README
4
-
* The library requires a license to work, the APIs organizationID and handshakeCode specify how to acquire a license.
5
-
* If nothing is specified, a 7-day (public) trial license will be used by default which is the case in this sample.
4
+
* The library requires a license to work, you use the API organizationID to tell the program where to fetch your license.
5
+
* If the Organizaion ID is not specified, a 7-day (public) trial license will be used by default which is the case in this sample.
6
6
* Note that network connection is required for this license to work.
7
7
*/
8
8
9
-
/* When using your own license, please uncomment the following lines and fill in your own information. */
10
-
/* For more information, please refer to https://www.dynamsoft.com/license-tracking/docs/about/licensefaq.html?ver=latest#how-to-use-a-trackable-license. */
9
+
/* When using your own license, uncomment the following line and specify your Organization ID. */
// DBR.BarcodeReader.sessionPassword = "PASSWORD-TO-PROTECT-YOUR-LICENSE"; // Important field to protect your license.
15
-
// DBR.BarcodeReader.licenseServer = ["YOUR-OWN-MAIN-LTS", "YOUR-OWN-STANDBY-LTS"]; // Ignore this line if you are using Dynamsoft-hosting LTS
12
+
13
+
/* If you don't have a license yet, you can request a trial on this page: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&package=js&utm_source=github */
14
+
/* For more information, please refer to https://www.dynamsoft.com/license-tracking/docs/about/licensefaq.html?ver=latest#how-to-use-a-trackable-license. */
16
15
17
16
/* The API "productKeys" is an alternative way to license the library, the major difference is that it does not require a network. Contact support@dynamsoft.com for more information. */
<buttonid="showScanner" hidden>Show The Scanner</button>
18
18
</div>
19
19
<div>
20
20
<spanstyle="float:left">All Results:</span><br/>
21
21
<divid="results"></div>
22
22
</div>
23
23
<script>
24
24
/** LICENSE ALERT - README
25
-
* The library requires a license to work, the APIs organizationID and handshakeCode specify how to acquire a license.
26
-
* If nothing is specified, a 7-day (public) trial license will be used by default which is the case in this sample.
25
+
* The library requires a license to work, you use the API organizationID to tell the program where to fetch your license.
26
+
* If the Organizaion ID is not specified, a 7-day (public) trial license will be used by default which is the case in this sample.
27
27
* Note that network connection is required for this license to work.
28
28
*/
29
29
30
-
/* When using your own license, please uncomment the following lines and fill in your own information. */
31
-
/* For more information, please refer to https://www.dynamsoft.com/license-tracking/docs/about/licensefaq.html?ver=latest#how-to-use-a-trackable-license. */
32
-
30
+
/* When using your own license, uncomment the following line and specify your Organization ID. */
// Dynamsoft.DBR.BarcodeReader.sessionPassword = "PASSWORD-TO-PROTECT-YOUR-LICENSE"; // Important field to protect your license.
36
-
// Dynamsoft.DBR.BarcodeReader.licenseServer = ["YOUR-OWN-MAIN-LTS", "YOUR-OWN-STANDBY-LTS"]; // Ignore this line if you are using Dynamsoft-hosting LTS
37
-
33
+
34
+
/* If you don't have a license yet, you can request a trial on this page: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&package=js&utm_source=github */
35
+
/* For more information, please refer to https://www.dynamsoft.com/license-tracking/docs/about/licensefaq.html?ver=latest#how-to-use-a-trackable-license. */
36
+
38
37
/* The API "productKeys" is an alternative way to license the library, the major difference is that it does not require a network. Contact support@dynamsoft.com for more information. */
* The library requires a license to work, the APIs organizationID and handshakeCode specify how to acquire a license.
19
-
* If nothing is specified, a 7-day (public) trial license will be used by default which is the case in this sample.
19
+
* The library requires a license to work, you use the API organizationID to tell the program where to fetch your license.
20
+
* If the Organizaion ID is not specified, a 7-day (public) trial license will be used by default which is the case in this sample.
20
21
* Note that network connection is required for this license to work.
21
22
*/
22
23
23
-
/* When using your own license, please uncomment the following lines and fill in your own information. */
24
-
/* For more information, please refer to https://www.dynamsoft.com/license-tracking/docs/about/licensefaq.html?ver=latest#how-to-use-a-trackable-license. */
24
+
/* When using your own license, uncomment the following line and specify your Organization ID. */
// Dynamsoft.DBR.BarcodeReader.sessionPassword = "PASSWORD-TO-PROTECT-YOUR-LICENSE"; // Important field to protect your license.
29
-
// Dynamsoft.DBR.BarcodeReader.licenseServer = ["YOUR-OWN-MAIN-LTS", "YOUR-OWN-STANDBY-LTS"]; // Ignore this line if you are using Dynamsoft-hosting LTS
27
+
28
+
/* If you don't have a license yet, you can request a trial on this page: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&package=js&utm_source=github */
29
+
/* For more information, please refer to https://www.dynamsoft.com/license-tracking/docs/about/licensefaq.html?ver=latest#how-to-use-a-trackable-license. */
30
30
31
31
/* The API "productKeys" is an alternative way to license the library, the major difference is that it does not require a network. Contact support@dynamsoft.com for more information. */
0 commit comments