Skip to content

Commit eb6da25

Browse files
authored
DWT 19.1
update to internal commit 2f725d38
2 parents e37eeb0 + 294a9c8 commit eb6da25

File tree

132 files changed

+483
-372
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

132 files changed

+483
-372
lines changed

_articles/extended-usage/advanced-initialization.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ description: Advanced DWT Initialization
1313
1414
As presented in the standard [initialization guide](/_articles/general-usage/initialization.md), DWT instantiates a default `WebTwain` object in its default configuration. Here, we offer some alternative ways to instantiate `WebTwain` objects, as well as ways to alter the configuration of `WebTwain` objects.
1515

16-
> Note: jsDelivr currently has problems delivering the Dynamic Web TWAIN Service installer (`https://cdn.jsdelivr.net/npm/dwt@latest/dist/dist/DynamicWebTWAINServiceSetup.msi`) due to [size restrictions](https://www.jsdelivr.com/documentation#id-configuring-a-default-file-in-packagejson); please consider hosting this particular resource file elsewhere. UKPKG is currently unaffected. For information about the Dynamic Web TWAIN Service, learn more [here](/_articles/extended-usage/dynamsoft-service-configuration.md).
16+
> Note: jsDelivr currently has problems delivering the Dynamic Web TWAIN Service installer (`https://cdn.jsdelivr.net/npm/dwt@latest/dist/dist/DynamicWebTWAINServiceSetup.msi`) due to [size restrictions](https://www.jsdelivr.com/documentation#id-configuring-a-default-file-in-packagejson); please consider hosting this particular resource file elsewhere. UNKPKG is currently unaffected. For information about the Dynamic Web TWAIN Service, learn more [here](/_articles/extended-usage/dynamsoft-service-configuration.md).
1717
1818
## Auto-Loading with CDN/Package Manager Resources
1919

@@ -76,7 +76,7 @@ APIs used:
7676

7777
Setting values for `Dynamsoft.DWT.AutoLoad` and `Dynamsoft.DWT.Containers` results in identical startup behavior for resources obtained from CDNs and package managers to resources obtained from the official SDK.
7878

79-
> Note: jsDelivr currently has problems delivering the Dynamic Web TWAIN Service installer (`https://cdn.jsdelivr.net/npm/dwt@latest/dist/dist/DynamicWebTWAINServiceSetup.msi`) due to [size restrictions](https://www.jsdelivr.com/documentation#id-configuring-a-default-file-in-packagejson); please consider hosting this particular resource file elsewhere. UKPKG is currently unaffected. For information about the Dynamic Web TWAIN Service, learn more [here](/_articles/extended-usage/dynamsoft-service-configuration.md).
79+
> Note: jsDelivr currently has problems delivering the Dynamic Web TWAIN Service installer (`https://cdn.jsdelivr.net/npm/dwt@latest/dist/dist/DynamicWebTWAINServiceSetup.msi`) due to [size restrictions](https://www.jsdelivr.com/documentation#id-configuring-a-default-file-in-packagejson); please consider hosting this particular resource file elsewhere. UNKPKG is currently unaffected. For information about the Dynamic Web TWAIN Service, learn more [here](/_articles/extended-usage/dynamsoft-service-configuration.md).
8080
8181
## Configuring Default `WebTwain` Instances
8282

_articles/extended-usage/barcode-processing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ function ReadBarcode(index) {
332332
}
333333
}
334334
if (ProcssedImagesCount === DWTObject.HowManyImagesInBuffer) {
335-
// Print out the indice arrays, each array represents a document
335+
// Print out the index arrays, each array represents a document
336336
console.log(aryIndices);
337337
aryIndices = [];
338338
} else

_articles/extended-usage/buffer-caching.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ else {
7575

7676
**Load image(s) from the storage folder**
7777

78-
To load the encypted image caches into Dynamic Web TWAIN again, please use the method [`loadFromLocalStorage()`](/_articles/info/api/WebTwain_IO.md#loadfromlocalstorage).
78+
To load the encrypted image caches into Dynamic Web TWAIN again, please use the method [`loadFromLocalStorage()`](/_articles/info/api/WebTwain_IO.md#loadfromlocalstorage).
7979

8080
```javascript
8181
var bExist = await DWTObject.localStorageExist(storageItemUid); // Determine whether the folder exists

_articles/extended-usage/dynamsoft-service-configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ When a request comes from a different origin, a CORS error message will be displ
6060

6161
## Installation of Dynamic Web TWAIN Service
6262

63-
On a desktop, when a new user accesses a web page using Dynamic Web TWAIN SDK for the first time, he will be prompted to install the Dynamic Web TWAIN Service. This is a built-in behaviour of the library. The prompt will display the download link. Once the installer is downloaded, the installation process will take just a few seconds.
63+
On a desktop, when a new user accesses a web page using Dynamic Web TWAIN SDK for the first time, he will be prompted to install the Dynamic Web TWAIN Service. This is a built-in behavior of the library. The prompt will display the download link. Once the installer is downloaded, the installation process will take just a few seconds.
6464

6565
The prompt comes up when you try to [create a WebTwain instance](/_articles/extended-usage/advanced-initialization.md#instantiating-webtwain-without-onwebtwainready) in Service mode.
6666

_articles/extended-usage/system-message-configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Dynamsoft.DWT.CustomizableDisplayInfo = {
9696
hand: "Hand Mode",
9797
rectselect: "Select Mode",
9898
zoom: "Click to Zoom In",
99-
restore: "Restore Orginal Image",
99+
restore: "Restore Original Image",
100100
save: "Save Changes",
101101
close: "Close the Editor",
102102
removeall: "Remove All Images",

_articles/faq/DVS-is-not-defined.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ You may see this error if the Dynamic Web TWAIN resources are deployed in a cust
1616

1717
Please make sure the path to Resources folder is defined correctly and that you can find `\*.viewer.js` under the `{ResourcesPath}/src` folder. If `viewer.js` does not exist in the target directory, please verify that the Dynamic Web TWAIN resources are deployed correctly and all files have been deployed.
1818

19-
Please refer to <a href="/web-twain/docs/general-usage/server-deployment.html" target="_blank">Dynamic Web TWAIN Deployment - Server Deployment</a> for more details on server deployment
19+
Please refer to [Dynamic Web TWAIN Deployment - Server Deployment](/_articles/docs/general-usage/server-deployment.md){:target="_blank"} for more details on server deployment

_articles/faq/activeX-in-Edge-IE-mode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ https://www.dynamsoft.com/web-twain/docs/faq/#project-deployment-and-end-user-in
1313

1414
# How to run Dynamic Web TWAIN ActiveX in Microsoft Edge Internet Explorer (IE) mode
1515

16-
Microsoft is <a href="https://www.microsoft.com/en-us/edge/business/ie-mode" target="_blank">retiring Internet Explorer 11</a> on June 15, 2022. To support Dynamic Web TWAIN ActiveX, please configure IE mode in Edge following the steps below. For better browser compatibility, we strongly recommend <a href="/web-twain/docs/indepth/development/activex.html#move-away-from-activex" target="_blank">updating your web application with our HTML5 edition</a>.
16+
Microsoft is <a href="https://www.microsoft.com/en-us/edge/business/ie-mode" target="_blank">retiring Internet Explorer 11</a> on June 15, 2022. To support Dynamic Web TWAIN ActiveX, please configure IE mode in Edge following the steps below. For better browser compatibility, we strongly recommend [updating your web application with our HTML5 edition](/_articles/docs/indepth/development/activex.md#move-away-from-activex){:target="_blank"}.
1717

1818
### Step by step instructions to configure Microsoft Edge IE mode
1919

_articles/faq/additional-form-fields.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description: How can I send additional form fields with images to my server or d
1212

1313
## How can I send additional form fields with images to my server or database?
1414

15-
You can use <a href="/web-twain/docs/info/api/WebTwain_IO.html#sethttpformfield" target="_blank">SetHTTPFormField</a> to set meta data as form fields and use <a href="/web-twain/docs/info/api/WebTwain_IO.html#httpupload" target="_blank">HTTPUpload</a> to send it to the server side with the scanned document.
15+
You can use [SetHTTPFormField](/_articles/info/api/WebTwain_IO.md#sethttpformfield){:target="_blank"} to set meta data as form fields and use [HTTPUpload](/_articles/info/api/WebTwain_IO.md#httpupload){:target="_blank"} to send it to the server side with the scanned document.
1616

1717
```javascript
1818
// Clear old fields before adding new ones
@@ -22,10 +22,10 @@ DWTObject.SetHTTPFormField("FileType", "Insurance Doc");
2222

2323
You can check out this <a href="https://demo.dynamsoft.com/Samples/dwt/Scan-Documents-and-Upload-Them/DWT_Scan_Upload_Demo.html" target="_blank">demo project</a> for sending additional form fields when uploading the scanned document.
2424

25-
<a href="/web-twain/docs/info/api/WebTwain_IO.html#sethttpformfield" target="_blank">SetHTTPFormField</a> can also be used to send image data in base64 or BLOB to the server side.
25+
[SetHTTPFormField](/_articles/info/api/WebTwain_IO.md#sethttpformfield){:target="_blank"} can also be used to send image data in base64 or BLOB to the server side.
2626

27-
By design, the method <a href="/web-twain/docs/info/api/WebTwain_IO.html#httpupload" target="_blank">HTTPUpload()</a> only contains one file. But as it essentially sends an HTTP form to the server, you can attach multiple files in that form using the methods <a href="/web-twain/docs/info/api/WebTwain_IO.html#converttoblob" target="_blank">ConvertToBlob()</a> and <a href="/web-twain/docs/info/api/WebTwain_IO.html#sethttpformfield" target="_blank">SetHTTPFormField()</a> .
28-
Check out the following snippet on how it is done. NOTE that the method <a href="/web-twain/docs/info/api/WebTwain_IO.html#httpupload" target="_blank">HTTPUpload()</a> only has 3 parameters as it doesn't need to specify a file anymore.
27+
By design, the method [HTTPUpload()](/_articles/info/api/WebTwain_IO.md#httpupload){:target="_blank"} only contains one file. But as it essentially sends an HTTP form to the server, you can attach multiple files in that form using the methods [ConvertToBlob()](/_articles/info/api/WebTwain_IO.md#converttoblob){:target="_blank"} and [SetHTTPFormField()](/_articles/info/api/WebTwain_IO.md#sethttpformfield){:target="_blank"} .
28+
Check out the following snippet on how it is done. NOTE that the method [HTTPUpload()](/_articles/info/api/WebTwain_IO.md#httpupload){:target="_blank"} only has 3 parameters as it doesn't need to specify a file anymore.
2929

3030
```javascript
3131
/**

_articles/faq/admin-privileges-needed-to-install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: default-layout
33
noTitleIndex: true
44
needAutoGenerateSidebar: true
55
title: Are admin privileges required to install the end-user component?
6-
keywords: Dynamic Web TWAIN, Project Deployment and End-user Installation, sdmin privileges, install
6+
keywords: Dynamic Web TWAIN, Project Deployment and End-user Installation, admin privileges, install
77
breadcrumbText: Are admin privileges required to install the end-user component?
88
description: Are admin privileges required to install the end-user component?
99
---

_articles/faq/automatically-detect-border.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ description: Can the Dynamic Web TWAIN SDK automatically detect borders of the s
1414

1515
Yes, Dynamic Web TWAIN SDK can automatically detect borders of the scanned document if it is supported by the device and its driver. You can check whether your device supports this capability from its user manual.
1616

17-
Please use <a href="/web-twain/docs/info/api/WebTwain_Acquire.html#ifautomaticborderdetection" target="_blank">IfAutomaticBorderDetection</a> property to enable this functionality.
17+
Please use [IfAutomaticBorderDetection](/_articles/info/api/WebTwain_Acquire.md#ifautomaticborderdetection){:target="_blank"} property to enable this functionality.
1818

1919
> Note: Once enabled, the data source (scanner) will automatically detect the borders of the document so that no extra margins are scanned.

0 commit comments

Comments
 (0)