Skip to content

Commit 6457902

Browse files
Merge pull request #136 from dynamsoft-docs/preview
update to internal commit 4bea594f
2 parents 490da56 + 4651528 commit 6457902

File tree

6 files changed

+50
-11
lines changed

6 files changed

+50
-11
lines changed

programming/cplusplus/api-reference/enum-barcode-format.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ enum BarcodeFormat : unsigned long long
2121
BF_ALL = 0xFFFFFFFEFFFFFFFF,
2222
/**The default barcode format settings. It's a combined value of BF_ONED, BF_GS1_DATABAR, BF_PDF417, BF_QR_CODE, BF_DATAMATRIX, BF_AZTEC, BF_MAXICODE, BF_MICRO_QR, BF_MICRO_PDF417, BF_GS1_COMPOSITE*/
2323
BF_DEFAULT = 0xFE3BFFFF,
24-
/**Combined value of BF_CODABAR, BF_CODE_128, BF_CODE_39, BF_CODE_39_Extended, BF_CODE_93, BF_EAN_13, BF_EAN_8, INDUSTRIAL_25, BF_ITF, BF_UPC_A, BF_UPC_E, BF_MSI_CODE;*/
24+
/**Combined value of BF_CODABAR, BF_CODE_128, BF_CODE_39, BF_CODE_39_Extended, BF_CODE_93, BF_EAN_13, BF_EAN_8, INDUSTRIAL_25, BF_ITF, BF_UPC_A, BF_UPC_E, BF_MSI_CODE, BF_CODE_11;*/
2525
BF_ONED = 0x003007FF,
2626
/**Combined value of BF_GS1_DATABAR_OMNIDIRECTIONAL, BF_GS1_DATABAR_TRUNCATED, BF_GS1_DATABAR_STACKED, BF_GS1_DATABAR_STACKED_OMNIDIRECTIONAL, BF_GS1_DATABAR_EXPANDED, BF_GS1_DATABAR_EXPANDED_STACKED, BF_GS1_DATABAR_LIMITED*/
2727
BF_GS1_DATABAR = 0x0003F800,
28-
/**Combined value of BF2_USPSINTELLIGENTMAIL, BF2_POSTNET, BF2_PLANET, BF2_AUSTRALIANPOST, BF2_RM4SCC, BF_KIX.*/
28+
/**Combined value of BF_USPSINTELLIGENTMAIL, BF_POSTNET, BF_PLANET, BF_AUSTRALIANPOST, BF_RM4SCC, BF_KIX.*/
2929
BF_POSTALCODE = 0x3F0000000000000,
3030
/**Code 39*/
3131
BF_CODE_39 = 0x1,

programming/cplusplus/samples/index.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,28 @@ permalink: /programming/cplusplus/samples/index.html
99

1010
# Samples and Demos - C++ Edition
1111

12-
1312
## Samples
1413

14+
### Basic Barcode Reader Samples
15+
1516
| Sample Name | Description |
1617
| --- | --- |
1718
| <a href="https://github.com/Dynamsoft/barcode-reader-c-cpp-samples/tree/main/Samples/HelloWorld/ReadAnImage" target="_blank">ReadAnImage</a> | This sample demonstrates the simplest way to read barcodes from an image file and output barcode format and text. |
1819
| <a href="https://github.com/Dynamsoft/barcode-reader-c-cpp-samples/tree/main/Samples/HelloWorld/ReadMultipleImages" target="_blank">ReadMultipleImages</a> | This sample demonstrates the simplest way to read barcodes from directory with image files and output barcode format and text. |
1920
| <a href="https://github.com/Dynamsoft/barcode-reader-c-cpp-samples/tree/main/Samples/MultiThreadDecoding" target="_blank">MultiThreadDecoding</a> | This sample demonstrates how to read barcodes and get barcode results in self-managed thread. |
2021
| <a href="https://github.com/Dynamsoft/barcode-reader-c-cpp-samples/tree/main/Samples/VideoDecoding" target="_blank">VideoDecoding</a> | This sample demonstrates how to read barcodes from video frames. |
2122

23+
### Additional Samples using Capture Vision SDK
24+
25+
In addition to the classic barcode decoding samples listed above, the following samples go a step further by parsing the decoded results and showcasing more structured workflows.
26+
27+
> [!IMPORTANT]
28+
> These samples use the `dynamsoft-capture-vision` package instead of `dynamsoft-barcode-reader`. If you're switching to these samples, make sure to [download](https://www.dynamsoft.com/capture-vision/confirmation/#desktop) and use the correct package.
29+
30+
| Sample Name | Description |
31+
| --- | --- |
32+
| <a href="https://github.com/Dynamsoft/capture-vision-cpp-samples/blob/main/Samples/DriverLicenseScanner" target="_blank">DriverLicenseScanner</a> | Shows how to capture and extract user's information from driver license/ID. |
33+
| <a href="https://github.com/Dynamsoft/capture-vision-cpp-samples/blob/main/Samples/VINScanner" target="_blank">VINScanner</a> | Shows how to capture and extract vehicle's information from Vehicle Identification Number (VIN). |
2234

2335
## Official Online Demo
2436
This <a href="https://demo.dynamsoft.com/barcode-reader/" target="_blank">Online Demo</a> is an online barcode scanner for all barcode types. All supported parameters are opened for customization to see how Dynamsoft Barcode Reader works in different usage scenarios.

programming/dotnet/api-reference/enum-barcode-format.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ public enum EnumBarcodeFormat : ulong
1818
BF_ALL = 0xFFFFFFFEFFFFFFFF,
1919
/**The default barcode format settings. It's a combined value of BF_ONED, BF_GS1_DATABAR, BF_PDF417, BF_QR_CODE, BF_DATAMATRIX, BF_AZTEC, BF_MAXICODE, BF_MICRO_QR, BF_MICRO_PDF417, BF_GS1_COMPOSITE*/
2020
BF_DEFAULT = 0xFE3BFFFF,
21-
/**Combined value of BF_CODABAR, BF_CODE_128, BF_CODE_39, BF_CODE_39_Extended, BF_CODE_93, BF_EAN_13, BF_EAN_8, INDUSTRIAL_25, BF_ITF, BF_UPC_A, BF_UPC_E, BF_MSI_CODE;*/
21+
/**Combined value of BF_CODABAR, BF_CODE_128, BF_CODE_39, BF_CODE_39_Extended, BF_CODE_93, BF_EAN_13, BF_EAN_8, INDUSTRIAL_25, BF_ITF, BF_UPC_A, BF_UPC_E, BF_MSI_CODE, BF_CODE_11;*/
2222
BF_ONED = 0x003007FF,
2323
/**Combined value of BF_GS1_DATABAR_OMNIDIRECTIONAL, BF_GS1_DATABAR_TRUNCATED, BF_GS1_DATABAR_STACKED, BF_GS1_DATABAR_STACKED_OMNIDIRECTIONAL, BF_GS1_DATABAR_EXPANDED, BF_GS1_DATABAR_EXPANDED_STACKED, BF_GS1_DATABAR_LIMITED*/
2424
BF_GS1_DATABAR = 0x0003F800,
25-
/**Combined value of BF2_USPSINTELLIGENTMAIL, BF2_POSTNET, BF2_PLANET, BF2_AUSTRALIANPOST, BF2_RM4SCC, BF_KIX.*/
25+
/**Combined value of BF_USPSINTELLIGENTMAIL, BF_POSTNET, BF_PLANET, BF_AUSTRALIANPOST, BF_RM4SCC, BF_KIX.*/
2626
BF_POSTALCODE = 0x3F0000000000000,
2727
/**Code 39*/
2828
BF_CODE_39 = 0x1,

programming/dotnet/samples/index.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,28 @@ needAutoGenerateSidebar: false
88

99
# Samples and Demos - .NET Edition
1010

11-
1211
## Samples
1312

13+
### Basic Barcode Reader Samples
14+
1415
| Sample Name | Description |
1516
| --- | --- |
1617
| <a href="https://github.com/Dynamsoft/barcode-reader-dotnet-samples/tree/main/Samples/HelloWorld/ReadAnImage" target="_blank">ReadAnImage</a> | This sample demonstrates the simplest way to read barcodes from an image file and output barcode format and text. |
1718
| <a href="https://github.com/Dynamsoft/barcode-reader-dotnet-samples/tree/main/Samples/HelloWorld/ReadMultipleImages" target="_blank">ReadMultipleImages</a> | This sample demonstrates the simplest way to read barcodes from directory with image files and output barcode format and text. |
1819
| <a href="https://github.com/Dynamsoft/barcode-reader-dotnet-samples/tree/main/Samples/GeneralSettings" target="_blank">GeneralSettings</a> | This sample demonstrates how to configure general used settings and read barcodes from an image file. |
1920
| <a href="https://github.com/Dynamsoft/barcode-reader-dotnet-samples/tree/main/Samples/ReadDPMBarcode" target="_blank">ReadDPMBarcode</a> | This sample demonstrates how to read DPM (Direct Part Marking) barcodes and get barcode results. |
2021

22+
### Additional Samples using Capture Vision SDK
23+
24+
In addition to the classic barcode decoding samples listed above, the following samples go a step further by parsing the decoded results and showcasing more structured workflows.
25+
26+
> [!IMPORTANT]
27+
> These samples use the `Dynamsoft.DotNet.CaptureVision.Bundle` package instead of `Dynamsoft.DotNet.BarcodeReader.Bundle`. If you're switching to these samples, make sure to install and use the correct package.
28+
29+
| Sample Name | Description |
30+
| --- | --- |
31+
| <a href="https://github.com/Dynamsoft/capture-vision-dotnet-samples/blob/main/Samples/DriverLicenseScanner" target="_blank">DriverLicenseScanner</a> | Shows how to capture and extract user's information from driver license/ID. |
32+
| <a href="https://github.com/Dynamsoft/capture-vision-dotnet-samples/blob/main/Samples/VINScanner" target="_blank">VINScanner</a> | Shows how to capture and extract vehicle's information from Vehicle Identification Number (VIN). |
33+
2134
## Official Online Demo
2235
This <a href="https://demo.dynamsoft.com/barcode-reader/" target="_blank">Online Demo</a> is an online barcode scanner for all barcode types. All supported parameters are opened for customization to see how Dynamsoft Barcode Reader works in different usage scenarios.

programming/python/api-reference/enum-barcode-format.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ codeAutoHeight: true
1212

1313
```python
1414
class EnumBarcodeFormat(IntEnum):
15-
#No barcode format in BarcodeFormat
16-
BF_NULL = 0x00
1715
#All supported formats in BarcodeFormat
1816
BF_ALL = 0xFFFFFFFEFFFFFFFF
1917
#The default barcode format settings. It's a combined value of BF_ONED, BF_GS1_DATABAR, BF_PDF417, BF_QR_CODE, BF_DATAMATRIX, BF_AZTEC, BF_MAXICODE, BF_MICRO_QR, BF_MICRO_PDF417, BF_GS1_COMPOSITE
2018
BF_DEFAULT = 0xFE3BFFFF
21-
#Combined value of BF_CODABAR, BF_CODE_128, BF_CODE_39, BF_CODE_39_Extended, BF_CODE_93, BF_EAN_13, BF_EAN_8, INDUSTRIAL_25, BF_ITF, BF_UPC_A, BF_UPC_E,BF_MSI_CODE;
19+
#Combined value of BF_CODABAR, BF_CODE_128, BF_CODE_39, BF_CODE_39_Extended, BF_CODE_93, BF_EAN_13, BF_EAN_8, INDUSTRIAL_25, BF_ITF, BF_UPC_A, BF_UPC_E, BF_MSI_CODE, BF_CODE_11;
2220
BF_ONED = 0x003007FF
2321
#Combined value of BF_GS1_DATABAR_OMNIDIRECTIONAL, BF_GS1_DATABAR_TRUNCATED, BF_GS1_DATABAR_STACKED, BF_GS1_DATABAR_STACKED_OMNIDIRECTIONAL,BF_GS1_DATABAR_EXPANDED, BF_GS1_DATABAR_EXPANDED_STACKED, BF_GS1_DATABAR_LIMITED
2422
BF_GS1_DATABAR = 0x0003F800
23+
#Combined value of BF_USPSINTELLIGENTMAIL, BF_POSTNET, BF_PLANET, BF_AUSTRALIANPOST, BF_RM4SCC, BF_KIX.
24+
BF_POSTALCODE = 0x3F0000000000000
2525
#Code 39
2626
BF_CODE_39 = 0x1
2727
#Code 128
@@ -88,8 +88,6 @@ class EnumBarcodeFormat(IntEnum):
8888
BF_FIVE_DIGIT_ADD_ON = 0x800000
8989
#Matrix 25
9090
BF_MATRIX_25 = 0x1000000000
91-
#Combined value of BF2_USPSINTELLIGENTMAIL, BF2_POSTNET, BF2_PLANET, BF2_AUSTRALIANPOST, BF2_RM4SCC.
92-
BF_POSTALCODE = 0x3F0000000000000
9391
#Nonstandard barcode
9492
BF_NONSTANDARD_BARCODE = 0x100000000
9593
#USPS Intelligent Mail.
@@ -112,4 +110,6 @@ class EnumBarcodeFormat(IntEnum):
112110
BF_PHARMACODE_TWO_TRACK = 0x800000000
113111
#PHARMACODE.
114112
BF_PHARMACODE = 0xC00000000
113+
#No barcode format in BarcodeFormat
114+
BF_NULL = 0x00
115115
```

programming/python/samples/index.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ needAutoGenerateSidebar: false
1111

1212
## Samples
1313

14+
### Basic Barcode Reader Samples
15+
1416
| Sample Name | Description |
1517
| --- | --- |
1618
| <a href="https://github.com/Dynamsoft/barcode-reader-python-samples/blob/master/Samples/read_an_image.py" target="_blank">ReadAnImage</a> | Shows the simplest way to read barcodes from an image file and output barcode format and text. |
@@ -20,5 +22,17 @@ needAutoGenerateSidebar: false
2022
| <a href="https://github.com/Dynamsoft/barcode-reader-python-samples/blob/master/Samples/video_decoding.py" target="_blank">VideoDecoding</a> | Shows how to decode barcodes from live video or video file. |
2123
| <a href="https://github.com/Dynamsoft/barcode-reader-python-samples/blob/master/Samples/multi_format_image_processing.py" target="_blank">MultiFormatImageProcessing</a> | Shows how to decode barcodes from various image format. |
2224

25+
### Additional Samples using Capture Vision SDK
26+
27+
In addition to the classic barcode decoding samples listed above, the following samples go a step further by parsing the decoded results and showcasing more structured workflows.
28+
29+
> [!IMPORTANT]
30+
> These samples use the `dynamsoft_capture_vision_bundle` package instead of `dynamsoft_barcode_reader_bundle`. If you're switching to these samples, make sure to install and use the correct package.
31+
32+
| Sample Name | Description |
33+
| --- | --- |
34+
| <a href="https://github.com/Dynamsoft/capture-vision-python-samples/blob/main/Samples/driver_license_scanner.py" target="_blank">DriverLicenseScanner</a> | Shows how to capture and extract user's information from driver license/ID. |
35+
| <a href="https://github.com/Dynamsoft/capture-vision-python-samples/blob/main/Samples/vin_scanner.py" target="_blank">VINScanner</a> | Shows how to capture and extract vehicle's information from Vehicle Identification Number (VIN). |
36+
2337
## Official Online Demo
2438
This <a href="https://demo.dynamsoft.com/barcode-reader/" target="_blank">Online Demo</a> is an online barcode scanner for all barcode types. All supported parameters are opened for customization to see how Dynamsoft Barcode Reader works in different usage scenarios.

0 commit comments

Comments
 (0)