Skip to content

Commit 75cf141

Browse files
Merge pull request #404 from dynamsoft-docs/preview
update to internal commit 99302bf4
2 parents d60a7a7 + cacc627 commit 75cf141

File tree

3 files changed

+60
-7
lines changed

3 files changed

+60
-7
lines changed

programming/javascript/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ After the integration, end users of the web page can open it in a browser, acces
8383
8484
Customers generally need to scan a barcode on the fly at which time there is no better input than the camera hooked to or built into the device itself. As shown in the code snippet above, the product **Dynamsoft Camera Enhancer (DCE)** is used to provide camera support. It makes use of the powerful [**MediaDevices**](https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices) interface (provided by the browser itself) to instantly access the video input of the camera, capture image frames and supply them to the back-end decoding engine.
8585
86-
> DBR and DCE communicate through the interface called [Image Source Adapter]({{ site.dcp_js_api }}input.html#image-source-adapter?lang=js).
86+
> DBR and DCE communicate through the interface called [Image Source Adapter]({{ site.dcvb_architecture }}input.html#image-source-adapter?lang=js).
8787
8888
### Interactive UI
8989

programming/javascript/release-notes/js-9.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,21 +39,21 @@ permalink: /programming/javascript/release-notes/js-9.html
3939
- Added property `cameraOpenTimeout` to the `BarcodeScanner`, enabling control over the maximum time allowed for opening a selected camera.
4040
- Changed the error message type generated during the autoZoom/autoFocus process from an error to a warning.
4141
- Removed the `PDFReadingMode` property from the interface `RuntimeSettings` and eliminated the `EnumPDFReadingMode` enumeration.
42-
- Updated the internal `Dynamsoft Camera Enhancer` from version 3.3.9 to version [3.3.10](https://www.dynamsoft.com/camera-enhancer/docs/web/programming/javascript/release-note/release-notes-3.x.html#3310-02052024).
42+
- Updated the internal `Dynamsoft Camera Enhancer` from version 3.3.9 to version 3.3.10.
4343

4444
## 9.6.32 (12/07/2023)
4545

4646
#### Improved
4747

4848
- Remove redundant characters extracted from the PDF417 code on South Carolina driver's licenses.
49-
- Updated the internal `Dynamsoft Camera Enhancer` from version 3.3.8 to version [3.3.9](https://www.dynamsoft.com/camera-enhancer/docs/web/programming/javascript/release-note/release-notes-3.x.html#339-12062023).
49+
- Updated the internal `Dynamsoft Camera Enhancer` from version 3.3.8 to version 3.3.9.
5050

5151
## 9.6.31 (10/12/2023)
5252

5353
#### Improved
5454

5555
- Supported a non-standard PDF417 type used in Navy's driver licenses.
56-
- Updated the internal `Dynamsoft Camera Enhancer` from version 3.3.6 to version [3.3.8](https://www.dynamsoft.com/camera-enhancer/docs/web/programming/javascript/release-note/release-notes-3.x.html#338-10122023).
56+
- Updated the internal `Dynamsoft Camera Enhancer` from version 3.3.6 to version 3.3.8.
5757

5858
## 9.6.30 (09/13/2023)
5959

@@ -65,7 +65,7 @@ permalink: /programming/javascript/release-notes/js-9.html
6565
#### Improved
6666

6767
- Updated the barcode reader algorithm to v9.6.30.
68-
- Updated the internal `Dynamsoft Camera Enhancer` from version 3.3.5 to version [3.3.6](https://www.dynamsoft.com/camera-enhancer/docs/web/programming/javascript/release-note/release-notes-3.x.html#336-09132023).
68+
- Updated the internal `Dynamsoft Camera Enhancer` from version 3.3.5 to version 3.3.6.
6969
- Updated the API [`singleFrameMode`](../api-reference/BarcodeScanner.md#singleframemode) to support using the system camera directly without prompting for image source selection on mobile devices.
7070
- Updated the method `close()` so that it automatically clears the highlighting of found barcode symbols.
7171

@@ -77,15 +77,15 @@ permalink: /programming/javascript/release-notes/js-9.html
7777

7878
#### Improved
7979

80-
- Updated the internal `Dynamsoft Camera Enhancer` from version 3.3.4 to version [3.3.5](https://www.dynamsoft.com/camera-enhancer/docs/web/programming/javascript/release-note/release-notes-3.x.html#335-08022023).
80+
- Updated the internal `Dynamsoft Camera Enhancer` from version 3.3.4 to version 3.3.5.
8181
- Updated API annotations.
8282

8383
## 9.6.20 (04/18/2023)
8484

8585
#### Improved
8686

8787
- Updated the barcode reader algorithm to v9.6.20.
88-
- Updated the internal `Dynamsoft Camera Enhancer` from version 3.3.1 to version [3.3.4](https://www.dynamsoft.com/camera-enhancer/docs/web/programming/javascript/release-note/release-notes-3.x.html#334-04172023).
88+
- Updated the internal `Dynamsoft Camera Enhancer` from version 3.3.1 to version 3.3.4.
8989

9090
#### Fixed
9191

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
---
2+
layout: default-layout
3+
title: Explore Features - Dynamsoft Barcode Reader JavaScript Edition User Guide
4+
description: This page lists the topics to explore the features of Dynamsoft Barcode Reader JavaScript SDK.
5+
keywords: user guide, explore features, javascript, js
6+
breadcrumbText: Explore Features
7+
noTitleIndex: false
8+
needGenerateH3Content: true
9+
needAutoGenerateSidebar: true
10+
permalink: /programming/javascript/user-guide/explore-features/index.html
11+
---
12+
13+
# Explore Features
14+
15+
Once you have got an application running with Dynamsoft Barcode Reader JavaScript edition, you can explore the many features of the SDK to see how to make the best out of the SDK.
16+
17+
> If you are just getting started with Dynamsoft Barcode Reader JavaScript Edition, we recommend that you read [Get Started](https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/user-guide/index.html) first.
18+
19+
## Basic Features
20+
21+
* [Specify barcode formats and count]({{site.features}}barcode-formats-and-count.html?lang=js)
22+
* [Read a specific area/region]({{site.features}}barcode-scan-region.html?lang=js)
23+
* [Customize the UI]({{site.features}}ui-customization-js.html?lang=js)
24+
25+
## Handle Difficult Cases
26+
27+
While the SDK has been carefully tuned to provide the best possible performance in most use cases, it can be further tweaked to provide an even better performance for barcodes/images of similar characteristics. Read the following topics and see if any of them might be helpful in your case.
28+
29+
* [Read inverted barcodes]({{site.features}}read-inverted-barcodes.html?lang=js)
30+
* [Read deformed barcodes]({{site.features}}read-deformed-barcodes.html?lang=js)
31+
* [Read incomplete barcodes]({{site.features}}read-incomplete-barcodes.html?lang=js)
32+
* [Read dense barcodes]({{site.features}}read-dense-barcodes.html?lang=js)
33+
* [Read barcodes from a large image]({{site.features}}read-a-large-image.html?lang=js)
34+
* [Read barcodes with small module size]({{site.features}}read-barcodes-with-small-module-size.html?lang=js)
35+
* [Read barcodes with imbalanced colors]({{site.features}}read-barcodes-with-imbalanced-colour.html?lang=js)
36+
* [Read barcodes with uneven lighting]({{site.features}}read-barcodes-with-uneven-lighting.html?lang=js)
37+
* [Read images with texture]({{site.features}}read-images-with-texture.html?lang=js)
38+
* [Read images with lots of text]({{site.features}}read-images-with-lots-of-text.html?lang=js)
39+
* [Preprocesss images to read difficult barcodes]({{site.features}}preprocess-images.html?lang=js)
40+
41+
## Barcode Results
42+
43+
* [Get barcode confidence and rotation]({{site.features}}get-confidence-rotation.html?lang=js)
44+
* [Get barcode location]({{site.features}}get-barcode-location.html?lang=js)
45+
* [Get detailed barcode information]({{site.features}}get-detailed-info.html?lang=js)
46+
* [Filter and sort decoding results]({{site.features}}filter-and-sort.html?lang=js)
47+
<!-- * [Use intermediate results]({{site.features}}use-intermidiate-results.html?lang=js) -->
48+
49+
## Advanced Features
50+
51+
<!-- * [Control when to terminate a decoding process]({{site.features}}control-terminate-phase.html?lang=js) -->
52+
* [Use SimplifiedCaptureVisionSettings or Templates]({{site.features}}use-runtimesettings-or-templates.html?lang=js)
53+
* [Use format specific configurations]({{site.features}}use-format-specific-configuration.html?lang=js)

0 commit comments

Comments
 (0)