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/assets/js/setLatestVersion.js b/assets/js/setLatestVersion.js index fc3b4001..cca1cd00 100644 --- a/assets/js/setLatestVersion.js +++ b/assets/js/setLatestVersion.js @@ -1,4 +1,4 @@ -var versionNoteLatestVersion = "18.1" +var versionNoteLatestVersion = "18.2" $(function() { $("#versionNoteLatestVersion").text(" (" + versionNoteLatestVersion + ")") 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/Addon_PDF.md b/info/api/Addon_PDF.md index c7bb3bfd..5f413e5e 100644 --- a/info/api/Addon_PDF.md +++ b/info/api/Addon_PDF.md @@ -12,6 +12,8 @@ permalink: /info/api/Addon_PDF.html > {WebTwainObject} denotes the `WebTwain` instance. +> All APIs on this page support Android Service from version 18.2. + **Methods** | | 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/Dynamsoft_WebTwainEnv.md b/info/api/Dynamsoft_WebTwainEnv.md index d48fb165..1e303322 100644 --- a/info/api/Dynamsoft_WebTwainEnv.md +++ b/info/api/Dynamsoft_WebTwainEnv.md @@ -21,6 +21,16 @@ interface Dynamsoft.DWT { readonly ServerLinuxVersionInfo: string; readonly ServerMacVersionInfo: string; readonly ServerVersionInfo: string; + /** + * Whether to load UI related js files. + */ + UseDefaultViewer: boolean; + /** + * Attach the callback function to the specified event. + * @param event Specify the event. + * @param callback Specify the callback. + */ + RegisterEvent(event: string, callback: (...args: any[]) => void): void; /** * Whether to create a WebTwain instance automatically. */ @@ -57,8 +67,8 @@ interface Dynamsoft.DWT { asyncFailureFunc: (errorString: string) => {} ): void; DeleteDWTObject(Id?: string): boolean; - GetWebTwain(ContainerId?: string): WebTwain; - GetWebTwainEx(WebTwainId: string): WebTwain; + GetWebTwain(ContainerIdOrWebTwainId?: string): WebTwain; + GetWebTwainEx(ContainerIdOrWebTwainId: string): WebTwain; Load(): void; Unload(): void; OnWebTwainPostExecute: function () {}; diff --git a/info/api/WebTwain_Acquire.md b/info/api/WebTwain_Acquire.md index 472d06b4..b5523118 100644 --- a/info/api/WebTwain_Acquire.md +++ b/info/api/WebTwain_Acquire.md @@ -105,6 +105,7 @@ interface DeviceConfiguration { extendedImageInfoQueryLevel?: Dynamsoft.DWT.EnumDWT_ExtImageInfo | number; //How much extended information is retrieved. Only valid when {IfGetExtImageInfo} is true. SelectSourceByIndex?: number; //Specify a source by its index. IfCloseSourceAfterAcquire?: boolean; //Whether to close the data source after aquisition. Default: false. + PageSize?: Dynamsoft.DWT.EnumDWT_CapSupportedSizes | number; //Specify page size } ``` @@ -2433,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**| ActiveX | -H5(Windows) | -H5(macOS/TWAIN) | -H5(macOS/ICA) | -H5(Linux) | -
| not supported | -v18.2+ | -v18.2+ | -v18.2+ | -v18.2+ | -