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
4 changes: 3 additions & 1 deletion _data/full_tree.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ tree_list:
- name: Barcode Recognition
path: /indepth/features/barcode.html
- name: PDF Handling
path: /indepth/features/pdf.html
path: /indepth/features/pdf.html
- name: Remote Scan
path: https://www.dynamsoft.com/remote-scan/docs/introduction/
- name: Samples and Demos
childList:
- name: Use Web TWAIN in Angular
Expand Down
3 changes: 3 additions & 0 deletions indepth/features/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,6 @@ This section covers how to implement the key capabilities of Dynamic Web TWAIN (
* [Handle PDFs]({{site.indepth}}features/PDF.html)

Learn about PDF reading & writing capabilities.

* [Remote Scan](https://www.dynamsoft.com/remote-scan/docs/introduction/)
Learn about how to use Remote Scan.
15 changes: 0 additions & 15 deletions info/api/Dynamsoft_Enum.md
Original file line number Diff line number Diff line change
Expand Up @@ -288,11 +288,6 @@ Note: IT_MULTIPAGE_PDF & IT_MULTIPAGE_TIF are only applicable to the ImageType o

## `Dynamsoft.DWT.EnumDWT_PDFCompressionType`

<div class="sample-code-prefix template-table"></div>
>- v17.3
>- v17.2.5
>
>1.
| Label | Value|
|:-|:-|
| PDF_AUTO | 0 |
Expand All @@ -301,16 +296,6 @@ Note: IT_MULTIPAGE_PDF & IT_MULTIPAGE_TIF are only applicable to the ImageType o
| PDF_JPEG | 5 |
| PDF_JP2000 | 6 |
| PDF_JBIG2 | 7 |
>2.
| Label | Value|
|:-|:-|
| PDF_AUTO | 0 |
| PDF_FAX4 | 2 |
| PDF_LZW | 3 |
| PDF_JPEG | 5 |
| PDF_JP2000 | 6 |
| PDF_JBig2 | 7 |


## `Dynamsoft.DWT.EnumDWT_ShowMode`

Expand Down
14 changes: 11 additions & 3 deletions info/api/WebTwain_Acquire.md
Original file line number Diff line number Diff line change
Expand Up @@ -2434,6 +2434,10 @@ Return or set the page size the data source uses to acquire images.
PageSize: Dynamsoft.DWT.EnumDWT_CapSupportedSizes | number;
```

**Parameters**

`PageSize`: Please refer to [EnumDWT_CapSupportedSizes]({{site.info}}api/Dynamsoft_Enum.html#dynamsoftdwtenumdwt_capsupportedsizes)

**Availability**

<div class="availability">
Expand Down Expand Up @@ -2474,6 +2478,10 @@ Return or set the pixel type used when acquiring images.
PixelType: Dynamsoft.DWT.EnumDWT_PixelType | number;
```

**Parameters**

`PixelType`: Please refer to [EnumDWT_PixelType]({{site.info}}api/Dynamsoft_Enum.html#dynamsoftdwtenumdwt_pixeltype)

**Availability**

<div class="availability">
Expand Down Expand Up @@ -3278,7 +3286,7 @@ Check this property after [OpenSource()](#opensource) is called.

## IfUseTwainDSM

Return or set whether the new TWAIN DSM (data source Manager) is used for acquisitions. The new TWAIN DSM is a DLL called 'TWAINDSM.dll' while the default | old DSM is called 'twain_32.dll'.
Return or set whether the new TWAIN DSM (data source Manager) is used for acquisitions. The new TWAIN DSM is a DLL called 'TWAINDSM.dll' while the default or old DSM is called 'twain_32.dll'.

**Syntax**

Expand Down Expand Up @@ -4600,7 +4608,7 @@ GetDevicesAsync(deviceType?: Dynamsoft.DWT.EnumDWT_DeviceType | number, refresh?

**Parameters**

`deviceType`: The device type
`deviceType`: The device type. Please refere to [EnumDWT_DeviceType]({{site.info}}api/Dynamsoft_Enum.html#dynamsoftdwtenumdwt_borderstyle)

`refresh`: Default value is **false**

Expand Down Expand Up @@ -4672,7 +4680,7 @@ DWObject.GetDevicesAsync().then((deviceList)=>{

**Parameters**

`device`: the device
`device`: the device object. Please refer to [Device]({{site.info}}api/Interfaces.html#device)

**Availability**

Expand Down
2 changes: 1 addition & 1 deletion info/api/WebTwain_Viewer.md
Original file line number Diff line number Diff line change
Expand Up @@ -2898,7 +2898,7 @@ on('resize',
DWObject.Viewer.on("resize", function (width, height) {
console.log(width, height);
});
DWObject.Viewer.width += 100;
DWObject.Viewer.width = 100;
```

---
Expand Down