dwt 18.1.2-beta → 18.2.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 +18 -35
- package/dist/dist/DynamsoftServiceSetup-arm64.deb +0 -0
- package/dist/dist/DynamsoftServiceSetup.deb +0 -0
- package/dist/dist/DynamsoftServiceSetup.msi +0 -0
- package/dist/dist/DynamsoftServiceSetup.pkg +0 -0
- package/dist/dist/DynamsoftServiceSetup.rpm +0 -0
- package/dist/dynamsoft.webtwain.min.js +343 -456
- package/dist/dynamsoft.webtwain.min.mjs +250 -360
- package/dist/src/dynamsoft.webtwain.css +11 -3
- package/dist/src/dynamsoft.webtwain.viewer.css +27 -0
- package/dist/src/dynamsoft.webtwain.viewer.js +9 -0
- package/dist/types/Dynamsoft.Enum.d.ts +31 -2
- package/dist/types/Dynamsoft.d.ts +20 -77
- package/dist/types/RemoteScan.Viewer.d.ts +42 -0
- package/dist/types/RemoteScan.d.ts +155 -0
- package/dist/types/WebTwain.Acquire.d.ts +3 -12
- package/dist/types/WebTwain.IO.d.ts +7 -0
- package/dist/types/WebTwain.Util.d.ts +41 -0
- package/dist/types/WebTwain.Viewer.d.ts +6 -0
- package/dist/types/index.d.ts +1 -2
- package/package.json +1 -1
- package/dist/src/dynamsoft.viewer.css +0 -2
- package/dist/src/dynamsoft.viewer.js +0 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
[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>
|
|
8
8
|
|
|
9
|
-
Note: Dynamic Web TWAIN SDK **v18.
|
|
9
|
+
Note: Dynamic Web TWAIN SDK **v18.2** is built in this package. For more detail, check the [Version Info](#versions).
|
|
10
10
|
|
|
11
11
|
## Table of Contents
|
|
12
12
|
- [Supported Environments](#supported-environments)
|
|
@@ -37,7 +37,8 @@ Note: Dynamic Web TWAIN SDK **v18.1** is built in this package. For more detail,
|
|
|
37
37
|
- Windows
|
|
38
38
|
- Linux
|
|
39
39
|
- macOS
|
|
40
|
-
- Android
|
|
40
|
+
- Android
|
|
41
|
+
- iOS (Remote scanner)
|
|
41
42
|
|
|
42
43
|
### Supported CPU Architectures
|
|
43
44
|
- x86/x64
|
|
@@ -149,10 +150,8 @@ If you are making use of the `CDN` [jsDelivr](https://cdn.jsdelivr.net/npm/dwt),
|
|
|
149
150
|
return DWObject.AcquireImageAsync({
|
|
150
151
|
PixelType: Dynamsoft.DWT.EnumDWT_PixelType.TWPT_RGB,
|
|
151
152
|
Resolution: 200,
|
|
152
|
-
|
|
153
|
+
IfCloseSourceAfterAcquire: true
|
|
153
154
|
});
|
|
154
|
-
}).then(function(){
|
|
155
|
-
return DWObject.CloseSourceAsync();
|
|
156
155
|
}).catch(function (exp) {
|
|
157
156
|
alert(exp.message);
|
|
158
157
|
});
|
|
@@ -190,22 +189,6 @@ If you are making use of the `CDN` [jsDelivr](https://cdn.jsdelivr.net/npm/dwt),
|
|
|
190
189
|
|
|
191
190
|
[More](https://www.dynamsoft.com/web-twain/features/)
|
|
192
191
|
|
|
193
|
-
### WebAssembly for Camera
|
|
194
|
-
|
|
195
|
-
| Features | Desktop | Mobile |
|
|
196
|
-
| ------------- |:-------------:| -----:|
|
|
197
|
-
| Document capture | :heavy_check_mark: | :heavy_check_mark: |
|
|
198
|
-
| Document edge detection | :heavy_check_mark: | :heavy_check_mark: |
|
|
199
|
-
| Document perspective correction | :heavy_check_mark: | :heavy_check_mark: |
|
|
200
|
-
| Document post-processing by filters| :heavy_check_mark: | :heavy_check_mark: |
|
|
201
|
-
| Front and rear camera switching |:heavy_check_mark: | :heavy_check_mark: |
|
|
202
|
-
| Dedicated image and PDF viewer|:heavy_check_mark: | :heavy_check_mark: |
|
|
203
|
-
| Built-in ready-to-use UI| :heavy_check_mark: | :heavy_check_mark: |
|
|
204
|
-
| SIMD and WebGL acceleration | :heavy_check_mark: | :heavy_check_mark: |
|
|
205
|
-
| Multi-Format export and sharing | :heavy_check_mark: | :heavy_check_mark: |
|
|
206
|
-
|
|
207
|
-
[More](https://www.dynamsoft.com/web-twain/features/mobile-web-capture-sdk/)
|
|
208
|
-
|
|
209
192
|
## Contact Us
|
|
210
193
|
|
|
211
194
|
[Contact Dynamsoft](https://www.dynamsoft.com/company/contact/) to resolve any issue you encounter with the library.
|
|
@@ -218,35 +201,35 @@ https://www.dynamsoft.com/Products/WebTWAIN_License.aspx
|
|
|
218
201
|
|
|
219
202
|
>`Dynamsoft Service (DynamsoftService.exe, 64bit)`
|
|
220
203
|
>
|
|
221
|
-
>**v18.
|
|
204
|
+
>**v18.2** (build version 1, 8, 2, 0328)
|
|
222
205
|
>
|
|
223
|
-
>`Dynamsoft Service Manager (
|
|
206
|
+
>`Dynamsoft Service Manager (DWASManager_18200328.dll, 64bit)`
|
|
224
207
|
>
|
|
225
|
-
>**v18.
|
|
208
|
+
>**v18.2** (build version 18, 2, 0, 0328)
|
|
226
209
|
>
|
|
227
|
-
>`Device Manager (
|
|
210
|
+
>`Device Manager (DeviceManager_18200328.dll, 64bit)`
|
|
228
211
|
>
|
|
229
|
-
>**v18.
|
|
212
|
+
>**v18.2** (build version 18, 2, 0, 0328)
|
|
230
213
|
>
|
|
231
|
-
>`Dynamic Web TWAIN (dwt_18.
|
|
214
|
+
>`Dynamic Web TWAIN (dwt_18.2.0.0328.dll, 64bit)`
|
|
232
215
|
>
|
|
233
|
-
>**v18.
|
|
216
|
+
>**v18.2** (build version 18, 2, 0, 0328)
|
|
234
217
|
>
|
|
235
|
-
>`Dynamsoft PDF Rasterizer (DynamicPdfRx64_11.4.
|
|
218
|
+
>`Dynamsoft PDF Rasterizer (DynamicPdfRx64_11.4.2.0328.dll, 64bit)`
|
|
236
219
|
>
|
|
237
|
-
>**v18.
|
|
220
|
+
>**v18.2** (build version 11, 4, 2, 0328)
|
|
238
221
|
>
|
|
239
|
-
>`Dynamsoft Barcode Reader (dbrx64_9.
|
|
222
|
+
>`Dynamsoft Barcode Reader (dbrx64_9.6.0.0328.dll, 64bit)`
|
|
240
223
|
>
|
|
241
|
-
>**v9.
|
|
224
|
+
>**v9.6.0** (build version 9, 6, 0, 0328)
|
|
242
225
|
>
|
|
243
226
|
>`Dynamsoft Webcam Addon (DynamicWebcamx64_15.0.0.0625.dll, 64bit)`
|
|
244
227
|
>
|
|
245
|
-
>**v18.
|
|
228
|
+
>**v18.2** (build version 15, 0, 0, 0625)
|
|
246
229
|
>
|
|
247
|
-
>`Dynamsoft Upload Module (UploadModule_1.8.
|
|
230
|
+
>`Dynamsoft Upload Module (UploadModule_1.8.2.0328.dll, 64bit)`
|
|
248
231
|
>
|
|
249
|
-
>**v18.
|
|
232
|
+
>**v18.2** (build version 1, 8, 2, 0328)
|
|
250
233
|
|
|
251
234
|
## Changelog
|
|
252
235
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|