dwt 19.0.0 → 19.1.0
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.md +17 -19
- package/dist/dist/DynamicWebTWAINServiceSetup-arm64.deb +0 -0
- package/dist/dist/DynamicWebTWAINServiceSetup.deb +0 -0
- package/dist/dist/DynamicWebTWAINServiceSetup.msi +0 -0
- package/dist/dist/DynamicWebTWAINServiceSetup.pkg +0 -0
- package/dist/dist/DynamicWebTWAINServiceSetup.rpm +0 -0
- package/dist/dynamsoft.webtwain.min.js +31 -30
- package/dist/dynamsoft.webtwain.min.mjs +31 -30
- package/dist/src/dynamsoft.lts.js +2 -2
- package/dist/src/dynamsoft.webtwain.css +4 -4
- package/dist/src/dynamsoft.webtwain.viewer.css +3 -3
- package/dist/src/dynamsoft.webtwain.viewer.js +3 -3
- package/dist/types/Addon.BarcodeReader.d.ts +1 -1
- package/dist/types/Addon.Webcam.d.ts +6 -6
- package/dist/types/Dynamsoft.d.ts +2 -2
- package/dist/types/WebTwain.Acquire.d.ts +3 -3
- package/dist/types/WebTwain.Edit.d.ts +4 -4
- package/dist/types/WebTwain.IO.d.ts +7 -7
- package/dist/types/WebTwain.Util.d.ts +1 -1
- package/dist/types/WebTwain.Viewer.d.ts +59 -9
- package/dwt-openapi.yaml +26 -26
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
[Dynamic Web TWAIN](https://www.dynamsoft.com/web-twain/overview/) is a cross-platform scanning SDK designed for web document management applications. With just a few lines of JavaScript code, you can develop robust web applications to scan documents, edit images and save them to file systems. To see it in action, please visit <a href="https://demo.dynamsoft.com/web-twain/" target="_blank">**this online demo**</a>
|
|
7
7
|
|
|
8
|
-
Note: Dynamic Web TWAIN SDK **v19.
|
|
8
|
+
Note: Dynamic Web TWAIN SDK **v19.1** is built in this package. For more detail, check the [Version Info](#versions).
|
|
9
9
|
|
|
10
10
|
## Table of Contents
|
|
11
11
|
- [Supported Environments](#supported-environments)
|
|
@@ -63,8 +63,6 @@ Note: Dynamic Web TWAIN SDK **v19.0** is built in this package. For more detail,
|
|
|
63
63
|
If you do not have a physical scanner to test on Windows, you can install a virtual scanner.
|
|
64
64
|
- [Virtual Scanner for Windows](https://download.dynamsoft.com/tool/twainds.win32.installer.2.1.3.msi)
|
|
65
65
|
|
|
66
|
-
Read more [here](https://www.dynamsoft.com/web-twain/docs/getstarted/hardware.html?ver=latest#no-scanner-to-test).
|
|
67
|
-
|
|
68
66
|
## Deployment
|
|
69
67
|
|
|
70
68
|
Dynamic Web TWAIN relies on the files in the `/dist/` folder to work. Make sure to put these files on your server and correctly refer to them by specifying the path with `ResourcesPath` (relative and absolute paths are both fine).
|
|
@@ -80,7 +78,7 @@ If you are making use of the `CDN` [jsDelivr](https://cdn.jsdelivr.net/npm/dwt),
|
|
|
80
78
|
<html>
|
|
81
79
|
<head>
|
|
82
80
|
<title>Hello World</title>
|
|
83
|
-
<script src="dist/dynamsoft.webtwain.min.js"></script>
|
|
81
|
+
<script src="https://unpkg.com/dwt@latest/dist/dynamsoft.webtwain.min.js"></script>
|
|
84
82
|
</head>
|
|
85
83
|
<body>
|
|
86
84
|
</body>
|
|
@@ -96,12 +94,12 @@ If you are making use of the `CDN` [jsDelivr](https://cdn.jsdelivr.net/npm/dwt),
|
|
|
96
94
|
<html>
|
|
97
95
|
<head>
|
|
98
96
|
<title>Hello World</title>
|
|
99
|
-
<script src="dist/dynamsoft.webtwain.min.js"></script>
|
|
97
|
+
<script src="https://unpkg.com/dwt@latest/dist/dynamsoft.webtwain.min.js"></script>
|
|
100
98
|
</head>
|
|
101
99
|
<body>
|
|
102
100
|
<script type="text/javascript">
|
|
103
|
-
Dynamsoft.DWT.ResourcesPath = "dist";
|
|
104
|
-
Dynamsoft.DWT.ProductKey = '
|
|
101
|
+
Dynamsoft.DWT.ResourcesPath = "https://unpkg.com/dwt@latest/dist";
|
|
102
|
+
Dynamsoft.DWT.ProductKey = 'DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9';
|
|
105
103
|
Dynamsoft.DWT.Containers = [{ ContainerId: 'dwtcontrolContainer', Width: 270, Height: 350 }];
|
|
106
104
|
</script>
|
|
107
105
|
</body>
|
|
@@ -123,14 +121,14 @@ If you are making use of the `CDN` [jsDelivr](https://cdn.jsdelivr.net/npm/dwt),
|
|
|
123
121
|
<html>
|
|
124
122
|
<head>
|
|
125
123
|
<title>Hello World</title>
|
|
126
|
-
<script src="dist/dynamsoft.webtwain.min.js"></script>
|
|
124
|
+
<script src="https://unpkg.com/dwt@latest/dist/dynamsoft.webtwain.min.js"></script>
|
|
127
125
|
</head>
|
|
128
126
|
<body>
|
|
129
127
|
<input type="button" value="Scan" onclick="AcquireImage();" />
|
|
130
128
|
<div id="dwtcontrolContainer"></div>
|
|
131
129
|
<script type="text/javascript">
|
|
132
|
-
Dynamsoft.DWT.ResourcesPath = "dist";
|
|
133
|
-
Dynamsoft.DWT.ProductKey = '
|
|
130
|
+
Dynamsoft.DWT.ResourcesPath = "https://unpkg.com/dwt@latest/dist";
|
|
131
|
+
Dynamsoft.DWT.ProductKey = 'DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9'; // Put your own key here
|
|
134
132
|
Dynamsoft.DWT.Containers = [{ ContainerId: 'dwtcontrolContainer', Width: 270, Height: 350 }];
|
|
135
133
|
window.onload = function () {
|
|
136
134
|
Dynamsoft.DWT.Load();
|
|
@@ -197,23 +195,23 @@ https://www.dynamsoft.com/Products/WebTWAIN_License.aspx
|
|
|
197
195
|
|
|
198
196
|
>`Dynamic Web TWAIN Service (DynamicWebTWAINService.exe, 64bit)`
|
|
199
197
|
>
|
|
200
|
-
>**v19.
|
|
198
|
+
>**v19.1** (build version 1, 9, 0, 0428)
|
|
201
199
|
>
|
|
202
200
|
>`Dynamic Web TWAIN Service Manager (DWASManager_19000318.dll, 64bit)`
|
|
203
201
|
>
|
|
204
|
-
>**v19.
|
|
202
|
+
>**v19.1** (build version 19, 0, 0, 0318)
|
|
205
203
|
>
|
|
206
|
-
>`Device Manager (
|
|
204
|
+
>`Device Manager (DeviceManager_19100428.dll, 64bit)`
|
|
207
205
|
>
|
|
208
|
-
>**v19.
|
|
206
|
+
>**v19.1** (build version 19, 1, 0, 0428)
|
|
209
207
|
>
|
|
210
|
-
>`Dynamic Web TWAIN (dwt_19.
|
|
208
|
+
>`Dynamic Web TWAIN (dwt_19.1.0.0428.dll, 64bit)`
|
|
211
209
|
>
|
|
212
|
-
>**v19.
|
|
210
|
+
>**v19.1** (build version 19, 1, 0, 0428)
|
|
213
211
|
>
|
|
214
212
|
>`Dynamsoft Image encryption and decryption & PDF Rasterizer (DMCodecx64.dll, 64bit)`
|
|
215
213
|
>
|
|
216
|
-
>**v19.
|
|
214
|
+
>**v19.1** (build version 12, 0, 0, 0318)
|
|
217
215
|
>
|
|
218
216
|
>`Dynamsoft Barcode Reader (dbrx64_9.6.2.0318.dll, 64bit)`
|
|
219
217
|
>
|
|
@@ -221,11 +219,11 @@ https://www.dynamsoft.com/Products/WebTWAIN_License.aspx
|
|
|
221
219
|
>
|
|
222
220
|
>`Dynamsoft Webcam Addon (DynamicWebcamx64_15.0.0.0625.dll, 64bit)`
|
|
223
221
|
>
|
|
224
|
-
>**v19.
|
|
222
|
+
>**v19.1** (build version 15, 0, 0, 0625)
|
|
225
223
|
>
|
|
226
224
|
>`Dynamsoft Upload Module (UploadModule_1.9.0.0318.dll, 64bit)`
|
|
227
225
|
>
|
|
228
|
-
>**v19.
|
|
226
|
+
>**v19.1** (build version 1, 9, 0, 0318)
|
|
229
227
|
|
|
230
228
|
## Changelog
|
|
231
229
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|