You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api/index-v3.0.md
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -8,20 +8,20 @@ keywords: Documentation, Mobile Web Capture, API Index
8
8
description: Mobile Web Capture Documentation API Reference Index
9
9
---
10
10
11
-
# API Reference Index
11
+
# API Reference Index
12
12
13
-
## Scan Single-Page Documents
13
+
## Scan Single-Page Documents
14
14
15
-
If you need to scan single-page documents and do not require handling PDF files (import or export), you only need **Dynamsoft Document Scanner (DDS)**, a component of **Mobile Web Capture (MWC)**. You can find its API reference here:
15
+
If you need to scan single-page documents and do not require handling PDF files (import or export), you only need **Dynamsoft Document Scanner (DDS)**, a component of **Mobile Web Capture (MWC)**. You can find its API reference here:
16
16
17
-
-[Dynamsoft Document Scanner API Reference]({{ site.api }}document-scanner.html)
17
+
-[Dynamsoft Document Scanner API Reference]({{ site.api }}document-scanner.html)
18
18
19
-
> See it in action with the [Dynamsoft Document Scanner Demo](https://demo.dynamsoft.com/document-scanner/).
19
+
> See it in action with the [Dynamsoft Document Scanner Demo](https://demo.dynamsoft.com/document-scanner/).
20
20
21
-
## Scan Multi-Page Documents
21
+
## Scan Multi-Page Documents
22
22
23
-
If you need to handle multi-page documents, PDF files, annotations, and more, you will need the full-featured **Mobile Web Capture (MWC)**. You can find its API reference here:
23
+
If you need to handle multi-page documents, PDF files, annotations, and more, you will need the full-featured **Mobile Web Capture (MWC)**. You can find its API reference here:
24
24
25
-
-[Mobile Web Capture API Reference]({{ site.api }}mobile-web-capture.html)
25
+
-[Mobile Web Capture API Reference]({{ site.code-gallery }}}mobile-web-capture/api.html)
26
26
27
-
> See it in action with the [Mobile Web Capture Demo](https://demo.dynamsoft.com/mobile-web-capture/).
27
+
> See it in action with the [Mobile Web Capture Demo](https://demo.dynamsoft.com/mobile-web-capture/).
Copy file name to clipboardExpand all lines: guide/index.md
+39-39Lines changed: 39 additions & 39 deletions
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ description: Mobile Document Scanner JS Edition User Guide
12
12
# Scan Single-Page Documents with Mobile Document Scanner
13
13
14
14
> [!TIP]
15
-
> Read the [Introduction]({{ site.introduction }}index.html) for an overview of the SDK architecture.
15
+
> Read the [Introduction]({{ site.introduction }}index.html) for common use cases, an overview of the SDK architecture, and system requirements.
16
16
17
17
Dynamsoft's **Mobile Document Scanner JavaScript Edition (MDS)** is a web SDK designed for scanning single-page documents. MDS captures images of the documents and enhances their quality to professional standards, making it an ideal tool for mobile document scanning.
18
18
@@ -209,7 +209,7 @@ First, download a copy of the resources:
209
209
210
210
#### Point to Resources
211
211
212
-
The library uses [`engineResourcePaths`]({{ site.api }}document-scanner.html#engineresourcepaths) to locate required Dynamsoft `node` dependencies by pointing to the location of the resources on your web server. The library also uses `scannerViewConfig.cameraEnhancerUIPath` similarly to set the path forthe HTML UI template of the `ScannerView`. Later steps will place both the `node` dependencies and the HTML templatein the local`dist` directory. Therefore, set`engineResourcePaths`in the MDS constructor to point to the local`dist` directory (along with setting your license key, and all other configurations):
212
+
The library uses [`engineResourcePaths`]({{ site.api }}index.html#engineresourcepaths) to locate required Dynamsoft `node` dependencies by pointing to the location of the resources on your web server. The library also uses `scannerViewConfig.cameraEnhancerUIPath` similarly to set the path forthe HTML UI template of the `ScannerView`. Later steps will place both the `node` dependencies and the HTML templatein the local`dist` directory. Therefore, set`engineResourcePaths`in the MDS constructor to point to the local`dist` directory (along with setting your license key, and all other configurations):
213
213
214
214
```javascript
215
215
const documentScanner = new Dynamsoft.DocumentScanner({
@@ -230,11 +230,11 @@ const documentScanner = new Dynamsoft.DocumentScanner({
This step creates the **MDS** UI, which occupies the entire visible area of the browser window by default when launched. If needed, you can specify a container to restrict the UI's size. For more details, refer to [Confine DocumentScanner UI to a Specific Container](#example-1-confine-documentscanner-ui-to-a-specific-container).
357
357
@@ -366,7 +366,7 @@ const result = await documentScanner.launch();
This step launches the user into the document scanning workflow, beginning in the `DocumentScannerView`, where they can scan a document using one of three methods:
372
372
@@ -394,7 +394,7 @@ The workflow returns a scanned image object of type `CorrectedImageResult`. To d
The following code clears the result container and displays the scanned result as a canvas:
400
400
@@ -414,7 +414,7 @@ This section builds on the Hello World sample to demonstrate how to configure **
414
414
415
415
### `DocumentScannerConfig` Overview
416
416
417
-
[`DocumentScannerConfig`]({{ site.api }}document-scanner.html#documentscannerconfig) is the primary configuration object for customizing **MDS**. It includes the following properties:
417
+
[`DocumentScannerConfig`]({{ site.api }}index.html#documentscannerconfig) is the primary configuration object for customizing **MDS**. It includes the following properties:
418
418
419
419
1. `license`: The license key.
420
420
2. `container`: The HTML container forthe entire workflow. If not specified (likein the Hello World Sample), one is created automatically.
@@ -493,8 +493,8 @@ const documentScanner = new Dynamsoft.DocumentScanner({
0 commit comments