From 722c5b7866acd694bc47484456bd522602c09139 Mon Sep 17 00:00:00 2001 From: ztyyLV <97287824+ztyyLV@users.noreply.github.com> Date: Tue, 9 May 2023 15:54:44 +0800 Subject: [PATCH] update --- _data/full_tree.yml | 4 +++- indepth/features/index.md | 3 +++ info/api/Dynamsoft_Enum.md | 15 --------------- info/api/WebTwain_Acquire.md | 14 +++++++++++--- info/api/WebTwain_Viewer.md | 2 +- 5 files changed, 18 insertions(+), 20 deletions(-) diff --git a/_data/full_tree.yml b/_data/full_tree.yml index 6b7b359e..a75b0c26 100644 --- a/_data/full_tree.yml +++ b/_data/full_tree.yml @@ -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 diff --git a/indepth/features/index.md b/indepth/features/index.md index 67260f90..083ccd84 100644 --- a/indepth/features/index.md +++ b/indepth/features/index.md @@ -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. diff --git a/info/api/Dynamsoft_Enum.md b/info/api/Dynamsoft_Enum.md index 67b6ce91..8f84d602 100644 --- a/info/api/Dynamsoft_Enum.md +++ b/info/api/Dynamsoft_Enum.md @@ -288,11 +288,6 @@ Note: IT_MULTIPAGE_PDF & IT_MULTIPAGE_TIF are only applicable to the ImageType o ## `Dynamsoft.DWT.EnumDWT_PDFCompressionType` -
->- v17.3 ->- v17.2.5 -> ->1. | Label | Value| |:-|:-| | PDF_AUTO | 0 | @@ -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` diff --git a/info/api/WebTwain_Acquire.md b/info/api/WebTwain_Acquire.md index 9c0cf895..b5523118 100644 --- a/info/api/WebTwain_Acquire.md +++ b/info/api/WebTwain_Acquire.md @@ -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**
@@ -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**
@@ -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** @@ -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** @@ -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** diff --git a/info/api/WebTwain_Viewer.md b/info/api/WebTwain_Viewer.md index d6720ea3..15179788 100644 --- a/info/api/WebTwain_Viewer.md +++ b/info/api/WebTwain_Viewer.md @@ -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; ``` ---