Skip to content

Commit 5ea669a

Browse files
authored
Merge pull request #898 from dynamsoft-docs/preview
update to internal commit d7cba9be
2 parents c0169cb + 0fdc299 commit 5ea669a

8 files changed

+62
-57
lines changed

_articles/faq/can-i-install-dynamsoft-service-silently.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,30 +58,30 @@ sudo rpm -i path/to/DynamicWebTWAINServiceSetup.rpm
5858
* Windows
5959

6060
``` shell
61-
msiexec /i "/path/to/DynamicWebTWAINServiceSetup.msi" /qn
61+
msiexec /i "/path/to/DynamsoftServiceSetup.msi" /qn
6262
```
6363

6464
* macOS
6565

6666
``` shell
6767
// Install
68-
sudo installer -pkg /path/to/DynamicWebTWAINServiceSetup.pkg -target /Applications
68+
sudo installer -pkg /path/to/DynamsoftServiceSetup.pkg -target /Applications
6969
// Stop service
70-
sudo launchctl unload /Library/LaunchAgents/com.dynamsoft.dynamicwebtwainservicex64.plist
70+
sudo launchctl unload /Library/LaunchAgents/com.dynamsoft.dynamsoftservicex64.plist
7171
// Start service
72-
launchctl load /Library/LaunchAgents/com.dynamsoft.dynamicwebtwainservicex64.plist
72+
launchctl load /Library/LaunchAgents/com.dynamsoft.dynamsoftservicex64.plist
7373
```
7474

7575
* Linux
7676

7777
``` shell
78-
sudo dpkg -i /path/to/DynamicWebTWAINServiceSetup.deb
78+
sudo dpkg -i /path/to/DynamsoftServiceSetup.deb
7979
```
8080

8181
or
8282

8383
``` shell
84-
sudo rpm -i path/to/DynamicWebTWAINServiceSetup.rpm
84+
sudo rpm -i path/to/DynamsoftServiceSetup.rpm
8585
```
8686

8787
<div class="multi-panel-end"></div>

_articles/faq/how-to-uninstall-dynamsoft-service.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ wmic product where name="Dynamic Web TWAIN Service" call uninstall /nointeractiv
3535

3636
### On macOS
3737

38-
* Run the file `Uninstall.pkg` . The file can be found in `Go > Applications > Dynamsoft > DynamicWebTWAINService > {installed version No.}`
39-
* Remove the folder `Go > Applications > Dynamsoft > DynamicWebTWAINService > {installed version No.}`
38+
* Run the file `Uninstall.pkg` . The file can be found in `Go > Applications > Dynamsoft > Dynamic Web TWAIN Service {version number}`
39+
* Remove the folder `Go > Applications > Dynamsoft > Dynamic Web TWAIN Service {version number}`
4040

4141
### On Linux
4242

43-
* Run the file `uninstall.sh` . The file can be found in `opt/dynamsoft/DynamicWebTWAINService`
44-
* Remove the folder `opt/dynamsoft/DynamicWebTWAINService`
43+
* Run the file `uninstall.sh` . The file can be found in `opt/dynamsoft/Dynamic Web TWAIN Service {version number}`
44+
* Remove the folder `opt/dynamsoft/Dynamic Web TWAIN Service {version number}`
4545

4646
<div class="multi-panel-end"></div>
4747

_articles/faq/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ description: Dynamic Web TWAIN SDK Documentation FAQ
204204
29. [The loading bar keeps spinning when capture the image with iPhone.](/_articles/faq/the-loading-bar-keeps-spinning-when-capture-the-image-with-iphone.md)
205205
30. [How to debug on Dynamic Web TWAIN online demo?](/_articles/faq/debug-on-online-demo.md)
206206
31. [Dynamic Web TWAIN prompts the .deb installer for Windows](/_articles/faq/incorrect-installer-for-windowsARM64.md)
207+
32. [Why am I unable to load the TIFF file into Dynamic Web TWAIN?](/_articles/faq/unable-to-load-4-bit-tiff.md)
207208

208209
## Licensing and Purchase
209210

_articles/faq/source-not-listed-on-linux.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,17 +44,19 @@ usermod -aG wheel XXX ps:XXX is current username
4444
3. Run the following command
4545
``` shell
4646
sudo rpm -i DynamicWebTWAINServiceSetup.rpm
47+
OR
48+
sudo dpkg -i DynamicWebTWAINServiceSetup.deb
4749
```
4850

4951
If the above does not resolve the issue, please follow the troubleshooting steps below.
5052

51-
1. Has the process started?
53+
1. Run the command below and check whether the process (DynamsoftScanningMgr) has started.
5254
``` shell
5355
ps aux | grep dynamsoft
5456
```
5557
2. Does the below command list out the source?
5658
``` shell
57-
bash /opt/dynamsoft/DynamicWebTWAINService/DynamsoftScanningMgr
59+
bash /opt/dynamsoft/DynamicWebTWAINService/DynamsoftScanning list
5860
```
5961
3. Please check the logs here: /var/log/syslog
6062

@@ -75,17 +77,19 @@ usermod -aG wheel XXX ps:XXX is current username
7577
3. Run the following command
7678
``` shell
7779
sudo rpm -i DynamsoftServiceSetup.rpm
80+
OR
81+
sudo dpkg -i DynamsoftServiceSetup.deb
7882
```
7983

8084
If the above does not resolve the issue, please follow the troubleshooting steps below.
8185

82-
1. Has the process started?
86+
1. Run the command below and check whether the process (DynamsoftScanningMgr) has started.
8387
``` shell
8488
ps aux | grep dynamsoft
8589
```
8690
2. Does the below command list out the source?
8791
``` shell
88-
bash /opt/dynamsoft/DynamsoftService/DynamsoftScanningMgr
92+
bash /opt/dynamsoft/DynamsoftService/DynamsoftScanning list
8993
```
9094
3. Please check the logs here: /var/log/syslog
9195

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
layout: default-layout
3+
noTitleIndex: true
4+
needAutoGenerateSidebar: true
5+
title: Why am I unable to load the TIFF file into Dynamic Web TWAIN?
6+
keywords: Dynamic Web TWAIN, Error Troubleshooting, tiff
7+
breadcrumbText: Why am I unable to load the TIFF file into Dynamic Web TWAIN?
8+
description: Why am I unable to load the TIFF file into Dynamic Web TWAIN?
9+
---
10+
11+
# Error Troubleshooting
12+
13+
## Why am I unable to load the TIFF file into Dynamic Web TWAIN?
14+
15+
### Symptom
16+
17+
When you attempt to import a TIFF file using Dynamic Web TWAIN, it will indicate that the file has been successfully loaded, but the image does not appear in the viewer.
18+
19+
### Cause
20+
21+
All versions prior to version 19.0 do not support importing 4-bit color images. If you encounter the issue mentioned above, your file may be using the deprecated JPEG compression standard.
22+
23+
### Resolution
24+
25+
Support for 4-bit TIFF format was added in version 19.1. Therefore, please update to version 19.1 to resolve this issue.
26+
27+
> If the resolution doesn't work for you, please [contact us](https://www.dynamsoft.com/company/contact/).

_articles/faq/use-usb-webcam-to-capture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ description: Can I use built-in or USB webcam to capture document?
1212

1313
## Can I use built-in or USB webcam to capture document?
1414

15-
Yes, you can use the built-in or USB webcam to capture documents. DirectShow Cameras and MediaDevices Cameras can easily capture documents. You can test your camera's compatibility <a href="/web-twain/docs/general-usage/scanner-image-acquisition.html#capture-from-cameras" target="_blank">link</a> will help you to embed code for capturing documents from webcams.
15+
Yes, you can use either the built-in webcam or a USB-connected webcam to capture documents. To verify if your device supports the DirectShow architecture, you can test it using the [online demo](https://demo.dynamsoft.com/web-twain/camera-scan).

_articles/faq/what-does-dynamsoft-service-do-on-end-user-machine.md

Lines changed: 14 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ By default, there are three Dynamic Web TWAIN Service processes running which us
3535
- Then there is a **monitor process** which is meant to monitor the main process and automatically start it in case it crashes. The monitor process starts like this:
3636

3737
``` cmd
38-
C:\Program Files (x86)\Dynamsoft\Dynamic Web TWAIN Service {version number}\DynamicWebTWAINService.exe -asmonitor Global\Dynamsoft_1.5.0_352325843_stop_service_event Global\Dynamsoft_1.5.0_352325828_certcheck_event
38+
C:\Program Files (x86)\Dynamsoft\Dynamic Web TWAIN Service {version number}\DynamicWebTWAINService.exe -asmonitor XXX
3939
```
4040

4141
- The last always-running process is meant to **support the SSL certificate specifically for the Firefox browser**:
4242

4343
``` cmd
44-
"-scan" "\\.\pipe\dynamsoftscan_15.0_70056_60" "0" "Global\ss352604281_61_70056" "0" "C:\Program Files (x86)\Dynamsoft\Dynamic Web TWAIN Service 19\dwt_19.0.0.0318.dll"
44+
C:\Program Files (x86)\Dynamsoft\Dynamic Web TWAIN Service {version number}\DynamicWebTWAINService.exe -certCheck XXX
4545
```
4646

4747
> Note: you may find another process named 'Dynamsoft Scanning New Module', which is a scan module. This process will start when you access an application integrated with Dynamic Web TWAIN, and will automatically stop when you close the application.
@@ -71,41 +71,33 @@ There are multiple files and folders in the service directory. Taking Windows se
7171

7272
### Components
7373

74-
These files are named with their version number. The following uses v16.1.1 as an example.
74+
These files are named with their version number. The following uses v19.0 as an example.
7575

7676
* Core scanning module
77-
+ `dwt_16.1.0.0728.dll`
77+
+ `dwt_19.0.0.0318.dll`
7878
+ `DSSCN2.exe`
7979
+ `DSSCN2x64.exe`
8080
+ `TWAINDSM.dll`
8181
+ `TWAINDSMx64.dll`
8282
* Barcode Reader Addon
83-
+ `\x64\`
84-
+ `\x86\`
85-
+ `dbr_7.4.0.0428.dll`
86-
+ `dbrx64_7.4.0.0428.dll`
87-
* PDF Addon
88-
+ `DynamicPdfCore_11.0.0.0428.dll`
89-
+ `DynamicPdfCorex64_11.0.0.0428.dll`
90-
+ `DynamicPdfR_11.0.0.0428.dll` (for the PDF Rasterizer)
91-
+ `DynamicPdfRx64_11.0.0.0428.dll` (for the PDF Rasterizer)
83+
+ `\x64\DynamsoftBarcodeReaderx64_9.6.dll`
84+
+ `dbrx64_9.6.2.0318.dll`
85+
* PDF Addon & Imaging features
86+
+ `\x64\DynamsoftCorex64.dll`
87+
+ `\x64\DynamsoftImageProcessingx64.dll`
88+
+ `\x64\ImageProcessx64.dll`
9289
* Webcam Addon
93-
+ `DynamicWebcam_15.0.0.0625.dll`
9490
+ `DynamicWebcamx64_15.0.0.0625.dll`
9591
* File Uploader
96-
+ `UploadModule_1.6.0.0428.dll`
97-
* Imaging features
98-
+ `DynamicImage.dll`
99-
+ `DynamicImagex64.dll`
92+
+ `UploadModule_1.9.0.0318.dll`
10093

10194
### Supporting files
10295

10396
* `favicon.ico` : The favicon.
10497
* `legal.txt` : Legal notice.
10598
* `libcurl.dll` : The file transfer library.
10699
* For OpenSSL
107-
+ `libeay32.dll`
108-
+ `ssleay32.dll`
100+
+ `libssl-3-x64.dll`
109101
* `port.lock`
110102

111103

@@ -116,25 +108,6 @@ Dynamic Web TWAIN Service sets up a local HTTP service that accepts requests fro
116108
>
117109
> These requests are handled by the JavaScript client of the library. Please do not try to make similar requests in your own code without consulting [Dynamsoft Support](/_articles/about/getsupport.md).
118110
119-
#### Return availability
120-
121-
- Request
122-
123-
```
124-
https://127.0.0.1:18623/fa/VersionInfo?ts=1603161807908
125-
```
126-
127-
- Response in case of success
128-
129-
```json
130-
{
131-
"id": "1",
132-
"method": "VersionInfo",
133-
"result": ["16, 1, 0, 0728", "", "64"],
134-
"cmdId": ""
135-
}
136-
```
137-
138111
#### Perform image removal
139112

140113
- Request
@@ -183,13 +156,13 @@ By default, there are three Dynamsoft Service processes running which use the sa
183156
- Then there is a **monitor process** which is meant to monitor the main process and automatically start it in case it crashes. The monitor process starts like this:
184157

185158
``` cmd
186-
C:\Windows\SysWOW64\Dynamsoft\DynamsoftServicex64\DynamsoftService.exe -asmonitor Global\Dynamsoft_1.5.0_352325843_stop_service_event Global\Dynamsoft_1.5.0_352325828_certcheck_event
159+
C:\Windows\SysWOW64\Dynamsoft\DynamsoftServicex64_{version number}\DynamsoftService.exe -asmonitor XXX
187160
```
188161

189162
- The last always-running process is meant to **support the SSL certificate specifically for the Firefox browser**:
190163

191164
``` cmd
192-
"-scan" "\\.\pipe\dynamsoftscan_15.0_70056_60" "0" "Global\ss352604281_61_70056" "0" "C:\Windows\SysWOW64\Dynamsoft\DynamsoftServicex64\dwt_trial_15.0.0.0625.dll"
165+
C:\Windows\SysWOW64\Dynamsoft\DynamsoftServicex64_{version number}\DynamsoftService.exe -certCheck XXX
193166
```
194167

195168
> Note: you may find another process named 'Dynamsoft Scanning New Module', which is a scan module. This process will start when you access an application integrated with Dynamic Web TWAIN, and will automatically stop when you close the application.

_articles/info/schedule/Stable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ description: Dynamic Web TWAIN SDK Documentation Schedule Stable Release Page
4949
- **Discontinued support for the PDF Compressor Add-On.**
5050
- **Discontinued out-of-the-box support for ActiveX.**
5151
- **Discontinued support for 32-bit macOS**: now only supporting macOS versions 10.15 and higher.
52-
- **Discontinued Android support.**
52+
- **Discontinued support for Android**: use [Mobile Web Capture](https://www.dynamsoft.com/use-cases/mobile-web-capture-sdk/) instead.
5353

5454
### Bug Fixes
5555

0 commit comments

Comments
 (0)