Skip to content

Commit c9f6505

Browse files
authored
Merge pull request #697 from dynamsoft-docs/preview
Preview
2 parents c51f64e + 8bf9e07 commit c9f6505

File tree

7 files changed

+114
-15
lines changed

7 files changed

+114
-15
lines changed

faq/admin-right-needed-to-install.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ https://www.dynamsoft.com/web-twain/docs/faq/#project-deployment-and-end-user-in
1414

1515
# Are admin rights required to install the end-user component?
1616

17-
Yes, the Dynamsoft Service installer is a `.msi` file which requires administrator rights. If your organization does not allow end users to have admin rights, you can contact [Dynamsoft Support]({{site.about}}getsupport.html) to get a special "Personal Installer" that does not require admin rights.
17+
Yes, the Dynamsoft Service installer is a `.msi` file which requires administrator rights to install as the install target is `C:\Windows\SysWOW64\`. Once the Dynamsoft Service is installed with admin rights, every user on that machine can has access to the Dynamsoft Service.
1818

19-
> NOTE
20-
>
21-
> Once the Dynamsoft Service is installed with admin rights, every user on that machine can use it. On the other hand, if it is installed with a "Personal Installer", only that specific user can use it.
19+
If your organization does not allow end users to have admin rights, you can contact [Dynamsoft Support]({{site.about}}getsupport.html) to get a special "Personal Installer" that does not require admin rights.
20+
21+
The "Personal Installer", will install to the user's `C:\Users\{UserName}\AppData\Roaming\` folder. Please be aware that only one user per machine is able to have the service installed via this method. The service cannot be installed to multiple user profiles, and only the user that installs the Services in this manner will have access to the Dynamsoft Service.

faq/the-loading-bar-keeps-spinning-when-capture-the-image-with-iphone.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,12 @@ if (Dynamsoft.navInfoSync.biPhone || Dynamsoft.navInfoSync.biPad) {
3131
}
3232
```
3333

34+
**Or** download the patch version:
35+
36+
- For framework project, please upgrade your dwt package to `v17.3.4` or `v18.0.2`.
37+
38+
- For Non-framework application, please download the new camera.js file below and replace the old file with new one under `Resource/addon` directory.
39+
- [v17.3 camera.js file](https://tst.dynamsoft.com/public/DWT_FIX/v17.3/OffscreenCanvas/dynamsoft.webtwain.addon.camera.zip)
40+
- [v18.0 camera.js file](https://tst.dynamsoft.com/public/DWT_FIX/v18.0/OffscreenCanvas/dynamsoft.webtwain.addon.camera.zip)
41+
3442
> If the resolution doesn't work for you, please [contact us](https://www.dynamsoft.com/company/contact/).

faq/what-are-the-resources-files.md

Lines changed: 92 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,90 @@ Resources files help you include Dynamic Web TWAIN in your application. The foll
1717

1818
> *Resources* is the default name of the folder that contain these files. It can be changed. For example, in the <a href="https://github.com/Dynamsoft/Dynamic-Web-TWAIN" target="_blank">DWT package</a>, it's called *dist*.
1919
20+
<div class="multi-panel-switching-prefix"></div>
21+
22+
- [v18.1+](#18plus)
23+
- [From v16.0 to v18.0](#18min)
24+
25+
<div class="multi-panel-start"></div>
26+
27+
### Default files
28+
29+
* dynamsoft.webtwain.config.js
30+
31+
> This file is used to make basic configuration of the Dynamic Web TWAIN library. It's where you enter the product key for the product and to change the initial viewer size, etc.
32+
33+
* dynamsoft.webtwain.initiate.js
34+
35+
> This file is the core of the Dynamic Web TWAIN library.
36+
37+
* dynamsoft.webtwain.initiate_cus.js
38+
39+
> This file is the core of the Dynamic Web TWAIN customized library, please do not use it if there is no requirement.
40+
41+
* dynamsoft.webtwain.install.js
42+
43+
> This file is used to configure the dialogs which are shown when the Dynamic Web TWAIN library is not installed or needs to be upgraded. This file is already referenced inside the dynamsoft.webtwain.initiate.js
44+
45+
* Readme.txt
46+
47+
* addon
48+
+ dynamsoft.upload.js
49+
50+
> This file contains the functionalities of the Dynamsoft Upload Module.
51+
52+
+ dynamsoft.webtwain.addon.pdf.js
53+
54+
> This file contains the functionalities of the PDF Rasterizer addon.
55+
56+
+ dynamsoft.webtwain.addon.webcam.js
57+
58+
> This file contains the functionalities of the Webcam addon.
59+
60+
+ dynamsoft.webtwain.addon.barcodereader.js
61+
62+
> This file contains the functionalities of the Barcode addon.
63+
64+
* dist
65+
66+
> Under this directory are the installers for the Dynamsoft Service which needs to be manually installed on each client machine that uses the Dynamic Web TWAIN library as a service.
67+
68+
- DynamsoftServiceSetup.deb
69+
70+
> For Linux (Debian)
71+
72+
- DynamsoftServiceSetup.rpm
73+
74+
> For Linux (Redhat)
75+
76+
- DynamsoftServiceSetup.msi
77+
78+
> For Windows
79+
80+
- DynamsoftServiceSetup.pkg
81+
82+
> For macOS
83+
84+
- LICENSE
85+
86+
* src
87+
88+
> These files contain the following functionalities
89+
> - image input & output
90+
> - image decode & encode
91+
> - PDF read & write
92+
> - Viewer & UI
93+
94+
- dynamsoft.lts.js
95+
- dynamsoft.webtwain.activex.js
96+
- dynamsoft.webtwain.viewer.css
97+
- dynamsoft.webtwain.viewer.viewer.js
98+
- dynamsoft.webtwain.viewer.js
99+
100+
<div class="multi-panel-end"></div>
101+
102+
<div class="multi-panel-start"></div>
103+
20104
### Default files
21105

22106
* dynamsoft.webtwain.config.js
@@ -32,6 +116,7 @@ Resources files help you include Dynamic Web TWAIN in your application. The foll
32116
> This file is used to configure the dialogs which are shown when the Dynamic Web TWAIN library is not installed or needs to be upgraded. This file is already referenced inside the dynamsoft.webtwain.initiate.js
33117
34118
* Readme.txt
119+
35120
* addon
36121
+ dynamsoft.upload.js
37122

@@ -61,6 +146,7 @@ Resources files help you include Dynamic Web TWAIN in your application. The foll
61146
- dbr-7.4.0.1.full.wasm
62147
- dbr-7.4.0.1.full.wasm.js
63148
- dbr-7.4.0.1.worker.js
149+
64150
* dist
65151

66152
> Under this directory are the installers for the Dynamsoft Service which needs to be manually installed on each client machine that uses the Dynamic Web TWAIN library as a service.
@@ -82,6 +168,7 @@ Resources files help you include Dynamic Web TWAIN in your application. The foll
82168
> For macOS
83169
84170
- LICENSE
171+
85172
* src
86173

87174
> These files contain the following functionalities
@@ -101,9 +188,13 @@ Resources files help you include Dynamic Web TWAIN in your application. The foll
101188
- dynamsoft.viewer.js
102189
- dynamsoft.webtwain.css
103190

191+
<div class="multi-panel-end"></div>
192+
193+
<div class="multi-panel-switching-end"></div>
194+
104195
### Other Resources files
105196

106-
The following two files are present in the [Dynamic Web TWAIN package](https://github.com/dynamsoft-dwt/web-twain-package).
197+
The following two files are present in the [Dynamic Web TWAIN package](https://github.com/Dynamsoft/Dynamic-Web-TWAIN).
107198

108199
* dynamsoft.webtwain.min.js
109200

indepth/features/OCR.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ description: Dynamic Web TWAIN SDK Documentation OCR Page
88
permalink: /indepth/features/OCR.html
99
---
1010

11-
# OCR
11+
# OCR (Retired)
12+
> This page is only provided as a reference for clients with existing Dynamsoft OCR licences. New OCR licences are not available as Dynamsoft has ended the development of OCR modules.
1213
13-
Dynamsoft offers two OCR engines that can be used as addons for `Dynamic Web TWAIN` : OCR Basic ( `OCRB` for short) and OCR Professional ( `OCRPro` for short).
14+
Dynamsoft offers two OCR engines that can be used as add-ons for `Dynamic Web TWAIN` : OCR Basic ( `OCRB` for short) and OCR Professional ( `OCRPro` for short).
1415

1516
`OCRB` is developed on top of the open source [Tesseract engine](https://github.com/tesseract-ocr/tesseract). `OCRPro` on the other hand was developed on top of Kofax's proprietary OCR engine.
1617

info/api/WebTwain_Buffer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ RemoveTag(tagName: string, indices?: number[]):boolean
190190

191191
**Parameters**
192192

193-
`tagName`: Specify the new tag name.
193+
`tagName`: Specify the tag to be removed.
194194

195195
`indices`: Specify the index.
196196

@@ -220,7 +220,7 @@ RemoveTag(tagName: string, indices?: number[]):boolean
220220

221221
**Usage Notes**
222222

223-
If the index is null, it will remove the tag you specified. If the index is not null, it will remove the specified tag on the image you selected.
223+
If the index is not specified, the tag will be removed from _all images_. If the index is specified, the tag will be removed from the specified image(s).
224224

225225
---
226226

info/schedule/Stable.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,6 @@ See the <a href="https://demo.dynamsoft.com/web-twain/mobile-online-camera-scann
413413

414414
* Made the viewer more independent and robust. Related APIs are redesigned.
415415
+ Added a new global property [`Dynamsoft.WebTwainEnv.UseDefaultViewer`]({{site.info}}api/Dynamsoft_WebTwainEnv.html#usedefaultviewer) to control whether the built-in viewer is used.
416-
+ Check out the [Viewer related API changes in version 16.2]({{site.info}}api/appendix.html#viewer-related-api-changes-in-version-162).
417416

418417
* Scanning remotely now supports showing the Manufacturer's User Interface.
419418
+ Only when the remote machine is Windows.

info/schedule/deprecated.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -84,15 +84,15 @@ The recommended fix is to patch the operating system, you can find the patch [he
8484

8585
| v17.0 | v16.2- |
8686
|:-|:-|
87-
| [ `Viewer.autoChangeIndex` ]({{site.info}}api/Addon_Viewer.html#autoChangeIndex) | `Viewer.topPageChanged()` |
87+
| [ `Viewer.autoChangeIndex` ]({{site.info}}api/WebTwain_Viewer.html#autochangeindex) | `Viewer.topPageChanged()` |
8888

8989
* The following APIs are new in v17.0
9090
+ [ `RemoveTag` ]({{site.info}}api/WebTwain_Buffer.html#removetag)
9191
+ [ `GetTagList` ]({{site.info}}api/WebTwain_Buffer.html#gettaglist)
92-
+ [ `DWT.licenseServer` ]({{site.info}}api/WebTwain_License.html#licenseServer)
93-
+ [ `DWT.handshakeCode` ]({{site.info}}api/WebTwain_License.html#handshakeCode)
94-
+ [ `DWT.sessionPassword` ]({{site.info}}api/WebTwain_License.html#sessionPassword)
95-
+ [ `DWT.licenseException` ]({{site.info}}api/WebTwain_License.html#licenseException)
92+
+ `DWT.licenseServer`
93+
+ `DWT.handshakeCode`
94+
+ `DWT.sessionPassword`
95+
+ `DWT.licenseException`
9696

9797
## 16.2
9898

0 commit comments

Comments
 (0)