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: programming/cplusplus/api-reference/enum-barcode-format.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,11 +21,11 @@ enum BarcodeFormat : unsigned long long
21
21
BF_ALL = 0xFFFFFFFEFFFFFFFF,
22
22
/**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*/
23
23
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;*/
25
25
BF_ONED = 0x003007FF,
26
26
/**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*/
27
27
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.*/
| <ahref="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. |
18
19
| <ahref="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. |
19
20
| <ahref="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. |
20
21
| <ahref="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. |
21
22
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
+
| <ahref="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
+
| <ahref="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). |
22
34
23
35
## Official Online Demo
24
36
This <ahref="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.
Copy file name to clipboardExpand all lines: programming/dotnet/api-reference/enum-barcode-format.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,11 +18,11 @@ public enum EnumBarcodeFormat : ulong
18
18
BF_ALL=0xFFFFFFFEFFFFFFFF,
19
19
/**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*/
20
20
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;*/
22
22
BF_ONED=0x003007FF,
23
23
/**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*/
24
24
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.*/
Copy file name to clipboardExpand all lines: programming/dotnet/samples/index.md
+14-1Lines changed: 14 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,15 +8,28 @@ needAutoGenerateSidebar: false
8
8
9
9
# Samples and Demos - .NET Edition
10
10
11
-
12
11
## Samples
13
12
13
+
### Basic Barcode Reader Samples
14
+
14
15
| Sample Name | Description |
15
16
| --- | --- |
16
17
| <ahref="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. |
17
18
| <ahref="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. |
18
19
| <ahref="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. |
19
20
| <ahref="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. |
20
21
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
+
| <ahref="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
+
| <ahref="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
+
21
34
## Official Online Demo
22
35
This <ahref="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.
Copy file name to clipboardExpand all lines: programming/python/api-reference/enum-barcode-format.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,16 +12,16 @@ codeAutoHeight: true
12
12
13
13
```python
14
14
classEnumBarcodeFormat(IntEnum):
15
-
#No barcode format in BarcodeFormat
16
-
BF_NULL=0x00
17
15
#All supported formats in BarcodeFormat
18
16
BF_ALL=0xFFFFFFFEFFFFFFFF
19
17
#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
20
18
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;
22
20
BF_ONED=0x003007FF
23
21
#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
24
22
BF_GS1_DATABAR=0x0003F800
23
+
#Combined value of BF_USPSINTELLIGENTMAIL, BF_POSTNET, BF_PLANET, BF_AUSTRALIANPOST, BF_RM4SCC, BF_KIX.
24
+
BF_POSTALCODE=0x3F0000000000000
25
25
#Code 39
26
26
BF_CODE_39=0x1
27
27
#Code 128
@@ -88,8 +88,6 @@ class EnumBarcodeFormat(IntEnum):
88
88
BF_FIVE_DIGIT_ADD_ON=0x800000
89
89
#Matrix 25
90
90
BF_MATRIX_25=0x1000000000
91
-
#Combined value of BF2_USPSINTELLIGENTMAIL, BF2_POSTNET, BF2_PLANET, BF2_AUSTRALIANPOST, BF2_RM4SCC.
92
-
BF_POSTALCODE=0x3F0000000000000
93
91
#Nonstandard barcode
94
92
BF_NONSTANDARD_BARCODE=0x100000000
95
93
#USPS Intelligent Mail.
@@ -112,4 +110,6 @@ class EnumBarcodeFormat(IntEnum):
Copy file name to clipboardExpand all lines: programming/python/samples/index.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,8 @@ needAutoGenerateSidebar: false
11
11
12
12
## Samples
13
13
14
+
### Basic Barcode Reader Samples
15
+
14
16
| Sample Name | Description |
15
17
| --- | --- |
16
18
| <ahref="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
20
22
| <ahref="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. |
21
23
| <ahref="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. |
22
24
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
+
| <ahref="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
+
| <ahref="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
+
23
37
## Official Online Demo
24
38
This <ahref="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