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: _includes/release-notes/python-highlight-10.4.2000.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
2
-
`DynamsoftBarcodeReader` SDK has been revamped to integrate with `DynamsoftCaptureVision (DCV)` architecture, which is newly established to aggregate the features of functional products powered by Dynamsoft. The features are designed to be pluggable, customizable and interactable. In addition, the functional products share the computation so that their processing speed is much higher than working individually. To reflect these improvements, the package has been renamed to `dynamsoft_barcode_reader_bundle`.
2
+
`DynamsoftBarcodeReader` SDK has been revamped to integrate with `DynamsoftCaptureVision (DCV)` architecture, which is newly established to aggregate the features of functional products powered by Dynamsoft. The features are designed to be pluggable, customizable and interactable. In addition, the functional products share the computation so that their processing speed is much higher than working individually. To reflect these improvements, the package has been renamed to `dynamsoft-barcode-reader-bundle`.
*`ImageSourceAdapter(ISA)`, the standard input interface for you to convert image data from different sources into the standard input image data. In addition, `ISA` incorporates an image buffer management system that allows instant access to the buffered image data.
Copy file name to clipboardExpand all lines: programming/cplusplus/index.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -9,13 +9,13 @@ needAutoGenerateSidebar: false
9
9
10
10
Dynamsoft Barcode Reader (DBR) SDK C++ Edition is a barcode reading tool designed specifically for C++ developers.
11
11
12
-
Leveraging the efficiency and flexibility of the C++ language, DBR C++ Edition provides rich APIs for developers to easily integrate barcode reading functionality into your c++ applications. Please take a look at [API Reference]({{site.dbr_cpp_api}}index.html) to see details.
12
+
Leveraging the efficiency and flexibility of the C++ language, DBR C++ Edition provides rich APIs for developers to easily integrate barcode reading functionality into your c++ applications. Please take a look at [API Reference]({{site.dbr_cpp_api}}index.html) to see details.
13
13
14
14
In addition, DBR C++ Edition provides cross-platform support, running on multiple operating systems such as Windows, Linux, and Mac, to meet the needs of different development environments
15
15
16
-
As one of the functional products of the Dynamsoft Capture Vision (DCV) framework, DBR is also designed to seamlessly integrate with other DCV components and provide developers with a comprehensive set of image processing tools, which cover image capturing, content understanding, result parsing, and interactive workflow. If you are building such a capturing and processing solution, take a look at [Introduction to Dynamsoft Capture Vision]({{site.dcvb_architecture}}).
16
+
As one of the functional products of the Dynamsoft Capture Vision (DCV) framework, DBR is also designed to seamlessly integrate with other DCV components and provide developers with a comprehensive set of image processing tools, which cover image capturing, content understanding, result parsing, and interactive workflow. If you are building such a capturing and processing solution, take a look at [Introduction to Dynamsoft Capture Vision]({{site.dcvb_architecture}}).
17
17
18
-
Furthermore, DBR provides a powerful parameter system in order to cope with various scenarios. Read <ahref="{{site.dbr_parameters_reference}}index.html">Parameter Reference</a> for details.
18
+
Furthermore, DBR provides a powerful parameter system in order to cope with various scenarios. Read [Parameters]({{ site.dbr_parameters }}structure-and-interfaces-of-parameters.html) for details.
Copy file name to clipboardExpand all lines: programming/cplusplus/release-notes/cpp-11.md
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,26 @@ needGenerateH3Content: false
8
8
9
9
# Release Notes for C++ Edition - 11.x
10
10
11
+
## 11.0.4000 (07/15/2025)
12
+
13
+
### New
14
+
15
+
-**Tile-Based TIFF Image Support**: Added support for TIFF images with tile-based storage format.
16
+
17
+
-**Base64 String Conversion**: Enabled bidirectional conversion between `ImageData` and Base64 strings.
18
+
19
+
-**Template Version Validation**: Introduced version checking for templates to prevent compatibility issues and mismatches.
20
+
21
+
### Changed
22
+
23
+
-**License Validation Behavior**: Instead of stopping execution immediately on an invalid license module, the library now continues processing and returns results from modules with valid licenses. An error is still reported to indicate the license issue.
24
+
25
+
-**PDFR License Control Removal**: Removed the license check for the PDFR module.
26
+
27
+
### Fixed
28
+
29
+
- Fixed various minor bugs and improved overall stability.
| <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. |
20
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. |
21
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. |
22
+
| <ahref="https://github.com/Dynamsoft/barcode-reader-c-cpp-samples/tree/main/Samples/BarcodePerformanceEvaluator"target="_blank">BarcodePerformanceEvaluator</a> | This sample demonstrates how to read barcodes from files in the specified directory and return results plus performance metrics. |
23
+
| <ahref="https://github.com/Dynamsoft/barcode-reader-c-cpp-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. |
24
+
| <ahref="https://github.com/Dynamsoft/barcode-reader-c-cpp-samples/tree/main/Samples/ReadDPMBarcode"target="_blank">ReadDPMBarcode</a> | This sample demonstrates how to read DPM (Direct Part Marking) barcodes and get barcode results. |
25
+
| <ahref="https://github.com/Dynamsoft/barcode-reader-c-cpp-samples/tree/main/Samples/ParameterTuner"target="_blank">ParameterTuner</a> | This sample demonstrates how to adjust and test different parameter settings to optimize barcode recognition performance. |
26
+
| <ahref="https://github.com/Dynamsoft/barcode-reader-c-cpp-samples/tree/main/Samples/ShowLocalizedVSDecodedBarcodes"target="_blank">ShowLocalizedVSDecodedBarcodes</a> | This sample demonstrates how to highlight successfully decoded and only-localized barcodes with different styles of rectangles. |
22
27
23
28
### Additional Samples using Capture Vision SDK
24
29
@@ -29,8 +34,9 @@ In addition to the classic barcode decoding samples listed above, the following
29
34
30
35
| Sample Name | Description |
31
36
| --- | --- |
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). |
37
+
| <ahref="https://github.com/Dynamsoft/capture-vision-cpp-samples/tree/main/Samples/DriverLicenseScanner"target="_blank">DriverLicenseScanner</a> | Shows how to capture and extract user's information from driver license/ID. |
38
+
| <ahref="https://github.com/Dynamsoft/capture-vision-cpp-samples/tree/main/Samples/VINScanner"target="_blank">VINScanner</a> | Shows how to capture and extract vehicle's information from Vehicle Identification Number (VIN). |
39
+
| <ahref="https://github.com/Dynamsoft/capture-vision-cpp-samples/tree/main/Samples/GS1AIScanner"target="_blank">GS1AIScanner</a> | Shows how to extract and interpret GS1 Application Identifiers (AIs) from GS1 barcodes. |
34
40
35
41
## Official Online Demo
36
42
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