Skip to content

Commit ac15cfa

Browse files
authored
Merge pull request #635 from dynamsoft-docs/preview
Preview
2 parents 4c37833 + cf99a88 commit ac15cfa

File tree

5 files changed

+18
-20
lines changed

5 files changed

+18
-20
lines changed

_data/full_tree.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ tree_list:
4040
- name: Barcode Recognition
4141
path: /indepth/features/barcode.html
4242
- name: PDF Handling
43-
path: /indepth/features/pdf.html
43+
path: /indepth/features/pdf.html
44+
- name: Remote Scan
45+
path: https://www.dynamsoft.com/remote-scan/docs/introduction/
4446
- name: Samples and Demos
4547
childList:
4648
- name: Use Web TWAIN in Angular

indepth/features/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,6 @@ This section covers how to implement the key capabilities of Dynamic Web TWAIN (
4747
* [Handle PDFs]({{site.indepth}}features/PDF.html)
4848

4949
Learn about PDF reading & writing capabilities.
50+
51+
* [Remote Scan](https://www.dynamsoft.com/remote-scan/docs/introduction/)
52+
Learn about how to use Remote Scan.

info/api/Dynamsoft_Enum.md

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -288,11 +288,6 @@ Note: IT_MULTIPAGE_PDF & IT_MULTIPAGE_TIF are only applicable to the ImageType o
288288

289289
## `Dynamsoft.DWT.EnumDWT_PDFCompressionType`
290290

291-
<div class="sample-code-prefix template-table"></div>
292-
>- v17.3
293-
>- v17.2.5
294-
>
295-
>1.
296291
| Label | Value|
297292
|:-|:-|
298293
| PDF_AUTO | 0 |
@@ -301,16 +296,6 @@ Note: IT_MULTIPAGE_PDF & IT_MULTIPAGE_TIF are only applicable to the ImageType o
301296
| PDF_JPEG | 5 |
302297
| PDF_JP2000 | 6 |
303298
| PDF_JBIG2 | 7 |
304-
>2.
305-
| Label | Value|
306-
|:-|:-|
307-
| PDF_AUTO | 0 |
308-
| PDF_FAX4 | 2 |
309-
| PDF_LZW | 3 |
310-
| PDF_JPEG | 5 |
311-
| PDF_JP2000 | 6 |
312-
| PDF_JBig2 | 7 |
313-
314299

315300
## `Dynamsoft.DWT.EnumDWT_ShowMode`
316301

info/api/WebTwain_Acquire.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2434,6 +2434,10 @@ Return or set the page size the data source uses to acquire images.
24342434
PageSize: Dynamsoft.DWT.EnumDWT_CapSupportedSizes | number;
24352435
```
24362436

2437+
**Parameters**
2438+
2439+
`PageSize`: Please refer to [EnumDWT_CapSupportedSizes]({{site.info}}api/Dynamsoft_Enum.html#dynamsoftdwtenumdwt_capsupportedsizes)
2440+
24372441
**Availability**
24382442

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

2481+
**Parameters**
2482+
2483+
`PixelType`: Please refer to [EnumDWT_PixelType]({{site.info}}api/Dynamsoft_Enum.html#dynamsoftdwtenumdwt_pixeltype)
2484+
24772485
**Availability**
24782486

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

32793287
## IfUseTwainDSM
32803288

3281-
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'.
3289+
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'.
32823290

32833291
**Syntax**
32843292

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

46014609
**Parameters**
46024610

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

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

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

46734681
**Parameters**
46744682

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

46774685
**Availability**
46784686

info/api/WebTwain_Viewer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2898,7 +2898,7 @@ on('resize',
28982898
DWObject.Viewer.on("resize", function (width, height) {
28992899
console.log(width, height);
29002900
});
2901-
DWObject.Viewer.width += 100;
2901+
DWObject.Viewer.width = 100;
29022902
```
29032903

29042904
---

0 commit comments

Comments
 (0)