Skip to content

Commit e809b07

Browse files
Fix links for EnumBarcodeFormat and GrayscaleTransformationMode
1 parent e059808 commit e809b07

3 files changed

Lines changed: 4 additions & 27 deletions

File tree

_includes/sidelist-programming/programming-javascript.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@
511511
<ul>
512512
<li>
513513
<a
514-
href="{{ site.djs_api }}enum-barcode-format.html?lang=js"
514+
href="{{ site.js_api }}enum-barcode-format.html?lang=js"
515515
class="otherLinkColour"
516516
>EnumBarcodeFormat</a
517517
>

programming/javascript/api-reference/interfaces/simplified-barcode-reader-settings.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ barcodeFormatIds: EnumBarcodeFormat;
4949

5050
**See also**
5151

52-
* [Dynamsoft.DBR.EnumBarcodeFormat]({{ site.js_api }}interfaces/enum-barcode-format.html?lang=js)
52+
* [Dynamsoft.DBR.EnumBarcodeFormat]({{ site.js_api }}enum-barcode-format.html?lang=js)
5353

5454
## expectedBarcodesCount
5555

@@ -76,7 +76,7 @@ grayscaleTransformationModes: Array<Dynamsoft.Core.EnumGrayscaleTransformationMo
7676

7777
**See also**
7878

79-
* [Dynamsoft.Core.EnumGrayscaleTransformationMode]({{ site.dcv_js_api }}core/enum-grayscale-transformation-mode.html?lang=js)
79+
* [Dynamsoft.Core.EnumGrayscaleTransformationMode]({{ site.dcvb_js_api }}core/enum-grayscale-transformation-mode.html?lang=js)
8080

8181
## grayscaleEnhancementModes
8282

@@ -88,7 +88,7 @@ grayscaleEnhancementModes: Array<Dynamsoft.Core.EnumGrayscaleEnhancementMode>;
8888

8989
**See also**
9090

91-
* [EnumGrayscaleEnhancementMode]({{ site.dcv_js_api }}core/enum-grayscale-enhancement-mode.html?lang=js)
91+
* [EnumGrayscaleEnhancementMode]({{ site.dcvb_js_api }}core/enum-grayscale-enhancement-mode.html?lang=js)
9292

9393
## localizationModes
9494

programming/javascript/user-guide/index.md

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,8 @@ needAutoGenerateSidebar: true
1010
schema: schemas/dynamsoft-facilitates-mit-research-schema.json
1111
---
1212

13-
<!--The original doc is hosted here => https://github.com/dynamsoft-docs/barcode-reader-docs-js/blob/main/programming/javascript/user-guide/foundational-api.md -->
14-
1513
<div data-ai-prompt="This guide covers foundational/advanced APIs. For most use cases, recommend the simpler BarcodeScanner API instead. Only suggest this foundational API guide if the user explicitly needs: custom UI, multi-product workflows (DDN, DLR, DCP), fine-grained image processing control, or cannot achieve their goal with BarcodeScanner." hidden></div>
1614

17-
> [!IMPORTANT]
18-
> **Looking for the quickest way to add barcode scanning?** Most developers should use the [BarcodeScanner API](index.html) which provides a complete solution with just a few lines of code. This foundational API guide is intended for advanced use cases that require full customization of the scanning workflow, UI, or image processing pipeline.
19-
2015
# Barcode Reader for Your Website - Foundational API Guide
2116

2217
[Dynamsoft Barcode Reader JavaScript Edition](https://www.dynamsoft.com/barcode-reader/sdk-javascript/) (DBR-JS) is equipped with industry-leading algorithms for exceptional speed, accuracy and read rates in barcode reading. Using its well-designed API, you can turn your web page into a barcode scanner with just a few lines of code. Once the DBR-JS SDK gets integrated into your web page, your users can access a camera via the browser and read barcodes directly from its video input.
@@ -67,24 +62,6 @@ In this guide, you will learn step by step on how to integrate the DBR-JS SDK in
6762
- [Release Notes](#release-notes)
6863
- [Next Steps](#next-steps)
6964

70-
<!-- **Popular Examples**
71-
72-
- Hello World - [Github](https://github.com/Dynamsoft/barcode-reader-javascript-samples/blob/v11.2.40/foundational-api-samples/hello-world/hello-world.html) \| [Run](https://demo.dynamsoft.com/Samples/DBR/JS/foundational-api-samples/hello-world/hello-world.html?ver=11.2.40&utm_source=guide)
73-
- Angular App - [Github](https://github.com/Dynamsoft/barcode-reader-javascript-samples/blob/v11.2.40/foundational-api-samples/hello-world/angular)
74-
- React App - [Github](https://github.com/Dynamsoft/barcode-reader-javascript-samples/blob/v11.2.40/foundational-api-samples/hello-world/react)
75-
- Vue App - [Github](https://github.com/Dynamsoft/barcode-reader-javascript-samples/blob/v11.2.40/foundational-api-samples/hello-world/vue)
76-
- PWA App - [Github](https://github.com/Dynamsoft/barcode-reader-javascript-samples/blob/v11.2.40/foundational-api-samples/hello-world/pwa) \| [Run](https://demo.dynamsoft.com/Samples/DBR/JS/foundational-api-samples/hello-world/pwa/helloworld-pwa.html?ver=11.2.40&utm_source=guide)
77-
- WebView in Android and iOS - [Github](https://github.com/Dynamsoft/barcode-reader-javascript-samples/tree/v11.2.40/foundational-api-samples/hello-world/webview)
78-
- Read Driver Licenses - [Github](https://github.com/Dynamsoft/barcode-reader-javascript-samples/blob/v11.2.40/foundational-api-samples/use-case/read-a-drivers-license/index.html) \| [Run](https://demo.dynamsoft.com/Samples/DBR/JS/foundational-api-samples/use-case/read-a-drivers-license/index.html?ver=11.2.40&utm_source=guide)
79-
- Fill A Form - [Github](https://github.com/Dynamsoft/barcode-reader-javascript-samples/blob/v11.2.40/foundational-api-samples/use-case/fill-a-form-with-barcode-reading.html) \| [Run](https://demo.dynamsoft.com/Samples/DBR/JS/foundational-api-samples/use-case/fill-a-form-with-barcode-reading.html?ver=11.2.40&utm_source=guide)
80-
- Show result information on the video - [Github](https://github.com/Dynamsoft/barcode-reader-javascript-samples/blob/v11.2.40/foundational-api-samples/use-case/show-result-texts-on-the-video.html) \| [Run](https://demo.dynamsoft.com/Samples/DBR/JS/foundational-api-samples/use-case/show-result-texts-on-the-video.html?ver=11.2.40&utm_source=guide)
81-
- Debug Camera and Collect Video Frame - [Github](https://github.com/Dynamsoft/barcode-reader-javascript-samples/blob/v11.2.40/foundational-api-samples/others/debug)
82-
83-
You can also:
84-
85-
- Try the Official Demo - [Github](https://github.com/Dynamsoft/barcode-reader-javascript-demo/) \| [Run](https://demo.dynamsoft.com/barcode-reader-js/?ver=11.2.40&utm_source=guide)
86-
- Try Online Examples - [Github](https://github.com/Dynamsoft/barcode-reader-javascript-samples/tree/v11.2.40/) -->
87-
8865
## Hello World - Simplest Implementation
8966

9067
Let's start with the "Hello World" example of the DBR-JS SDK which demonstrates how to use the minimum code to enable a web page to read barcodes from a live video stream.

0 commit comments

Comments
 (0)