Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion faq/service-installation-issue.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ C:\Users\owen_thinkpad_t480s\AppData\Local\Temp, because this path can't be foun

### Resolution

Run 'Command Prompt' as administrator, go to C:\WINDOWS\system32, then execute the following line to unsitall it:
Run 'Command Prompt' as administrator, go to C:\WINDOWS\system32, then execute the following line to uninstall it:

``` shell
wmic product where name="Dynamsoft Service" call uninstall /nointeractive
Expand Down
93 changes: 92 additions & 1 deletion faq/what-are-the-resources-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ Resources files help you include Dynamic Web TWAIN in your application. The foll

> *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*.

<div class="multi-panel-switching-prefix"></div>

- [18.0 and 18.0-](#18min)
- [v18.1+](#18plus)

<div class="multi-panel-start"></div>

### Default files

* dynamsoft.webtwain.config.js
Expand All @@ -32,6 +39,7 @@ Resources files help you include Dynamic Web TWAIN in your application. The foll
> 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

* Readme.txt

* addon
+ dynamsoft.upload.js

Expand Down Expand Up @@ -61,6 +69,7 @@ Resources files help you include Dynamic Web TWAIN in your application. The foll
- dbr-7.4.0.1.full.wasm
- dbr-7.4.0.1.full.wasm.js
- dbr-7.4.0.1.worker.js

* dist

> 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.
Expand All @@ -82,6 +91,7 @@ Resources files help you include Dynamic Web TWAIN in your application. The foll
> For macOS

- LICENSE

* src

> These files contain the following functionalities
Expand All @@ -101,9 +111,90 @@ Resources files help you include Dynamic Web TWAIN in your application. The foll
- dynamsoft.viewer.js
- dynamsoft.webtwain.css

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

<div class="multi-panel-start"></div>

### Default files

* dynamsoft.webtwain.config.js

> 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.

* dynamsoft.webtwain.initiate.js

> This file is the core of the Dynamic Web TWAIN library.

* dynamsoft.webtwain.initiate_cus.js

> This file is the core of the Dynamic Web TWAIN customized library, please do not use it if there is no requirement.

* dynamsoft.webtwain.install.js

> 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

* Readme.txt

* addon
+ dynamsoft.upload.js

> This file contains the functionalities of the Dynamsoft Upload Module.

+ dynamsoft.webtwain.addon.pdf.js

> This file contains the functionalities of the PDF Rasterizer addon.

+ dynamsoft.webtwain.addon.webcam.js

> This file contains the functionalities of the Webcam addon.

+ dynamsoft.webtwain.addon.barcodereader.js

> This file contains the functionalities of the Barcode addon.

* dist

> 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.

- DynamsoftServiceSetup.deb

> For Linux (Debian)

- DynamsoftServiceSetup.rpm

> For Linux (Redhat)

- DynamsoftServiceSetup.msi

> For Windows

- DynamsoftServiceSetup.pkg

> For macOS

- LICENSE

* src

> These files contain the following functionalities
> - image input & output
> - image decode & encode
> - PDF read & write
> - Viewer & UI

- dynamsoft.lts.js
- dynamsoft.webtwain.activex.js
- dynamsoft.webtwain.viewer.css
- dynamsoft.webtwain.viewer.viewer.js
- dynamsoft.webtwain.viewer.js

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

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

### Other Resources files

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

* dynamsoft.webtwain.min.js

Expand Down
4 changes: 2 additions & 2 deletions info/api/WebTwain_Buffer.md
Original file line number Diff line number Diff line change
Expand Up @@ -894,7 +894,7 @@ GetSelectedImagesSize(type: Dynamsoft.DWT.EnumDWT_ImageType | number): number;

**Parameters**

`type`: Sepcify the expected file type.
`type`: Specify the expected file type.

**Availability**

Expand Down Expand Up @@ -2347,4 +2347,4 @@ GetDocumentInfoList(): DocumentInfo[];
</tr>

</table>
</div>
</div>
4 changes: 2 additions & 2 deletions info/schedule/Stable.md
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ No changes in version 16.1.
* In favor of the WASM mode, image transferring now uses JPEG more often than PNG. Previously, there was only the Local-Service mode and only PNG was used.
* The following methods are made asynchronous (while still synchronous-compliant):

`ChangeImageSize()` , `ConvertToBW()` , `ConvertToGrayScale()` , `Crop()` , `Erase()` , `FilterImageByTag()` , `Flip()` , `GetSelectedImageSize()` , `GetSkewAngle()` , `Invert()` , `Mirror()` , `Rotate()` , `RotateEx()` , `RotateLeft()` , `RotateRight()` , `SetDPI()` , `SetImageWidth()`
`ChangeImageSize()` , `ConvertToBW()` , `ConvertToGrayScale()` , `Crop()` , `Erase()` , `FilterImageByTag()` , `Flip()` , `GetSelectedImagesSize()` , `GetSkewAngle()` , `Invert()` , `Mirror()` , `Rotate()` , `RotateEx()` , `RotateLeft()` , `RotateRight()` , `SetDPI()` , `SetImageWidth()`

> NOTE
>
Expand Down Expand Up @@ -1421,7 +1421,7 @@ In v10.0.1 there is no limit to the size of an Http Request. In v10.0, the WebSo
* Added clearing the specified area of an image and filling the area with a color.
* `MaxImagesInBuffer` : In the trial version of Dynamic Web TWAIN, the maximum value you can set to the property has been raised from 4 to 1024.
* Optimized `HTTPPostResponseString` in Plug-in Edition: You can use `HTTPPostResponseString` property to get much more detailed info returned from the web server.
* Added methods: `CutFrameToClipboard()`, `Erase()` , `FTPUploadSelectedImagesAsMultiPagePDF()` , `FTPUploadSelectedImagesAsMultiPageTIFF()` , `GetBarcodeInfo()` , `GetBarcodeText()` , `HTTPUploadSelectedImagesThroughPostAsMultiPagePDF()` , `HTTPUploadSelectedImagesThroughPostAsMultiPageTIFF()` , `HTTPUploadSelectedImagesThroughPutAsMultiPagePDF()` , `HTTPUploadSelectedImagesThroughPutAsMultiPageTIFF()` , `LoadImageFromBytes()` , `MoveImage()`, `Print()`, `Rotate()` , `SaveSelectedImagesAsMultiPagePDF()` , `SaveSelectedImagesAsMultiPageTIFF()` , `SaveSelectedImagesToBytes()`, `GetSelectedImageSize()` .
* Added methods: `CutFrameToClipboard()`, `Erase()` , `FTPUploadSelectedImagesAsMultiPagePDF()` , `FTPUploadSelectedImagesAsMultiPageTIFF()` , `GetBarcodeInfo()` , `GetBarcodeText()` , `HTTPUploadSelectedImagesThroughPostAsMultiPagePDF()` , `HTTPUploadSelectedImagesThroughPostAsMultiPageTIFF()` , `HTTPUploadSelectedImagesThroughPutAsMultiPagePDF()` , `HTTPUploadSelectedImagesThroughPutAsMultiPageTIFF()` , `LoadImageFromBytes()` , `MoveImage()`, `Print()`, `Rotate()` , `SaveSelectedImagesAsMultiPagePDF()` , `SaveSelectedImagesAsMultiPageTIFF()` , `SaveSelectedImagesToBytes()`, `GetSelectedImagesSize()` .
* Added properties: `AllowMultiSelect`, `BackgroundColor` , `BackgroundFillColor` , `BarcodeCount` , `HttpFieldNameOfUploadedImage` , `IfPASVMode` , `SelectedImageIndex`, `SelectedImagesCount`, `SelectionImageBorderColor` , `VScrollBar` .
* Added event: `OnInternetTransferPercentageEx`

Expand Down