diff --git a/programming/cplusplus/api-reference/enum-barcode-format.md b/programming/cplusplus/api-reference/enum-barcode-format.md index fc570ea9..6ef60af9 100644 --- a/programming/cplusplus/api-reference/enum-barcode-format.md +++ b/programming/cplusplus/api-reference/enum-barcode-format.md @@ -21,11 +21,11 @@ enum BarcodeFormat : unsigned long long BF_ALL = 0xFFFFFFFEFFFFFFFF, /**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*/ BF_DEFAULT = 0xFE3BFFFF, - /**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;*/ + /**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;*/ BF_ONED = 0x003007FF, /**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*/ BF_GS1_DATABAR = 0x0003F800, - /**Combined value of BF2_USPSINTELLIGENTMAIL, BF2_POSTNET, BF2_PLANET, BF2_AUSTRALIANPOST, BF2_RM4SCC, BF_KIX.*/ + /**Combined value of BF_USPSINTELLIGENTMAIL, BF_POSTNET, BF_PLANET, BF_AUSTRALIANPOST, BF_RM4SCC, BF_KIX.*/ BF_POSTALCODE = 0x3F0000000000000, /**Code 39*/ BF_CODE_39 = 0x1, diff --git a/programming/cplusplus/samples/index.md b/programming/cplusplus/samples/index.md index 2dadaa0f..0f84140f 100644 --- a/programming/cplusplus/samples/index.md +++ b/programming/cplusplus/samples/index.md @@ -9,9 +9,10 @@ permalink: /programming/cplusplus/samples/index.html # Samples and Demos - C++ Edition - ## Samples +### Basic Barcode Reader Samples + | Sample Name | Description | | --- | --- | | ReadAnImage | This sample demonstrates the simplest way to read barcodes from an image file and output barcode format and text. | @@ -19,6 +20,17 @@ permalink: /programming/cplusplus/samples/index.html | MultiThreadDecoding | This sample demonstrates how to read barcodes and get barcode results in self-managed thread. | | VideoDecoding | This sample demonstrates how to read barcodes from video frames. | +### Additional Samples using Capture Vision SDK + +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. + +> [!IMPORTANT] +> 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. + +| Sample Name | Description | +| --- | --- | +| DriverLicenseScanner | Shows how to capture and extract user's information from driver license/ID. | +| VINScanner | Shows how to capture and extract vehicle's information from Vehicle Identification Number (VIN). | ## Official Online Demo This Online Demo 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. diff --git a/programming/dotnet/api-reference/enum-barcode-format.md b/programming/dotnet/api-reference/enum-barcode-format.md index 68e440e9..c3e75912 100644 --- a/programming/dotnet/api-reference/enum-barcode-format.md +++ b/programming/dotnet/api-reference/enum-barcode-format.md @@ -18,11 +18,11 @@ public enum EnumBarcodeFormat : ulong BF_ALL = 0xFFFFFFFEFFFFFFFF, /**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*/ BF_DEFAULT = 0xFE3BFFFF, - /**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;*/ + /**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;*/ BF_ONED = 0x003007FF, /**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*/ BF_GS1_DATABAR = 0x0003F800, - /**Combined value of BF2_USPSINTELLIGENTMAIL, BF2_POSTNET, BF2_PLANET, BF2_AUSTRALIANPOST, BF2_RM4SCC, BF_KIX.*/ + /**Combined value of BF_USPSINTELLIGENTMAIL, BF_POSTNET, BF_PLANET, BF_AUSTRALIANPOST, BF_RM4SCC, BF_KIX.*/ BF_POSTALCODE = 0x3F0000000000000, /**Code 39*/ BF_CODE_39 = 0x1, diff --git a/programming/dotnet/samples/index.md b/programming/dotnet/samples/index.md index 8becd9a0..abee602a 100644 --- a/programming/dotnet/samples/index.md +++ b/programming/dotnet/samples/index.md @@ -8,9 +8,10 @@ needAutoGenerateSidebar: false # Samples and Demos - .NET Edition - ## Samples +### Basic Barcode Reader Samples + | Sample Name | Description | | --- | --- | | ReadAnImage | This sample demonstrates the simplest way to read barcodes from an image file and output barcode format and text. | @@ -18,5 +19,17 @@ needAutoGenerateSidebar: false | GeneralSettings | This sample demonstrates how to configure general used settings and read barcodes from an image file. | | ReadDPMBarcode | This sample demonstrates how to read DPM (Direct Part Marking) barcodes and get barcode results. | +### Additional Samples using Capture Vision SDK + +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. + +> [!IMPORTANT] +> 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. + +| Sample Name | Description | +| --- | --- | +| DriverLicenseScanner | Shows how to capture and extract user's information from driver license/ID. | +| VINScanner | Shows how to capture and extract vehicle's information from Vehicle Identification Number (VIN). | + ## Official Online Demo This Online Demo 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. diff --git a/programming/python/api-reference/enum-barcode-format.md b/programming/python/api-reference/enum-barcode-format.md index 3be3b60a..340ad86d 100644 --- a/programming/python/api-reference/enum-barcode-format.md +++ b/programming/python/api-reference/enum-barcode-format.md @@ -12,16 +12,16 @@ codeAutoHeight: true ```python class EnumBarcodeFormat(IntEnum): - #No barcode format in BarcodeFormat - BF_NULL = 0x00 #All supported formats in BarcodeFormat BF_ALL = 0xFFFFFFFEFFFFFFFF #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 BF_DEFAULT = 0xFE3BFFFF - #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; + #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; BF_ONED = 0x003007FF #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 BF_GS1_DATABAR = 0x0003F800 + #Combined value of BF_USPSINTELLIGENTMAIL, BF_POSTNET, BF_PLANET, BF_AUSTRALIANPOST, BF_RM4SCC, BF_KIX. + BF_POSTALCODE = 0x3F0000000000000 #Code 39 BF_CODE_39 = 0x1 #Code 128 @@ -88,8 +88,6 @@ class EnumBarcodeFormat(IntEnum): BF_FIVE_DIGIT_ADD_ON = 0x800000 #Matrix 25 BF_MATRIX_25 = 0x1000000000 - #Combined value of BF2_USPSINTELLIGENTMAIL, BF2_POSTNET, BF2_PLANET, BF2_AUSTRALIANPOST, BF2_RM4SCC. - BF_POSTALCODE = 0x3F0000000000000 #Nonstandard barcode BF_NONSTANDARD_BARCODE = 0x100000000 #USPS Intelligent Mail. @@ -112,4 +110,6 @@ class EnumBarcodeFormat(IntEnum): BF_PHARMACODE_TWO_TRACK = 0x800000000 #PHARMACODE. BF_PHARMACODE = 0xC00000000 + #No barcode format in BarcodeFormat + BF_NULL = 0x00 ``` diff --git a/programming/python/samples/index.md b/programming/python/samples/index.md index 3fd9aca0..059fdfbf 100644 --- a/programming/python/samples/index.md +++ b/programming/python/samples/index.md @@ -11,6 +11,8 @@ needAutoGenerateSidebar: false ## Samples +### Basic Barcode Reader Samples + | Sample Name | Description | | --- | --- | | ReadAnImage | Shows the simplest way to read barcodes from an image file and output barcode format and text. | @@ -20,5 +22,17 @@ needAutoGenerateSidebar: false | VideoDecoding | Shows how to decode barcodes from live video or video file. | | MultiFormatImageProcessing | Shows how to decode barcodes from various image format. | +### Additional Samples using Capture Vision SDK + +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. + +> [!IMPORTANT] +> 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. + +| Sample Name | Description | +| --- | --- | +| DriverLicenseScanner | Shows how to capture and extract user's information from driver license/ID. | +| VINScanner | Shows how to capture and extract vehicle's information from Vehicle Identification Number (VIN). | + ## Official Online Demo This Online Demo 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.