We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20eb984 commit 648e437Copy full SHA for 648e437
indepth/features/input.md
@@ -31,8 +31,13 @@ Many modern scanners and multi-functional printers (MFPs) support the eSCL proto
31
32
The following code shows how one way to acquire the image via the eSCL protocol.
33
``` javascript
34
+//Get the list of available eSCL scanners
35
let esclDeviceList=await DWObject.GetDevicesAsync(Dynamsoft.DWT.EnumDWT_DeviceType.ESCLSCANNER)
36
+
37
+//Select the desired scanner from the list
38
await DWObject.SelectDeviceAsync(esclDeviceList[0])
39
40
+//Acquire image (with configuration)
41
await DWObject.AcquireImageAsync({Resolution:100,IfShowUI:false})
42
```
43
0 commit comments