Skip to content

Commit 490da56

Browse files
Merge pull request #135 from dynamsoft-docs/preview
update to internal commit 44e8a9ac
2 parents ff3be74 + 4a7f40e commit 490da56

File tree

6 files changed

+75
-2
lines changed

6 files changed

+75
-2
lines changed

assets/js/dbrServerVersionSearch.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"version": "11.0.3000",
44
"matchVersion": {
55
"cpp": "3.0.3000",
6-
"dotnet": "3.0.3000"
6+
"dotnet": "3.0.3000",
7+
"python": "3.0.3000"
78
}
89
},
910
{

programming/cplusplus/release-notes/cpp-11.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ needGenerateH3Content: false
1717
### Fixed
1818

1919
- Fixed an issue where calling `StartCapturing` or `Capture` with `templateName` set to an empty string ("") would result in error `-40103`.
20-
- Resolved a performance issue where decoding certain specific images could cause unusually high CPU and memory usage.
20+
- Resolved a performance issue that could cause unusually high CPU and memory usage in some cases.
2121

2222
### Changed
2323

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
layout: default-layout
3+
title: PDF417Details Class - Dynamsoft Barcode Reader Module Python Edition API Reference
4+
description: Definition of PDF417Details class in Dynamsoft Barcode Reader Module Python Edition.
5+
keywords: rows, columns, error_correction_level, PDF417Details, api reference
6+
---
7+
# PDF417Details
8+
9+
The `PDF417Details` class represents a barcode in PDF417 format. It inherits from the `BarcodeDetails` class and contains information about the row count, column count, and error correction level of the barcode.
10+
11+
## Definition
12+
13+
*Module:* dynamsoft_barcode_reader
14+
15+
*Inheritance:* [BarcodeDetails]({{ site.dbr_python_api }}barcode-details.html) -> PDF417Details
16+
17+
```python
18+
class PDF417Details(BarcodeDetails)
19+
```
20+
21+
## Properties
22+
23+
| Property | Type |
24+
|---------- | ---- |
25+
| [`rows`](#rows) | *int* |
26+
| [`columns`](#columns) | *int* |
27+
| [`error_correction_level`](#error_correction_level) | *int* |
28+
| [`has_left_row_indicator`](#has_left_row_indicator) | *int* |
29+
| [`has_right_row_indicator`](#has_right_row_indicator) | *int* |
30+
31+
### rows
32+
33+
The number of rows in the PDF417 barcode.
34+
35+
### columns
36+
37+
The number of columns in the PDF417 barcode.
38+
39+
### error_correction_level
40+
41+
The error correction level of PDF417 code.
42+
43+
### has_left_row_indicator
44+
45+
Specifies whether the left row indicator of the PDF417 code exists.
46+
47+
### has_right_row_indicator
48+
49+
Specifies whether the right row indicator of the PDF417 code exists.

programming/python/api-reference/pdf417-details.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ class PDF417Details(BarcodeDetails)
2727
| [`error_correction_level`](#error_correction_level) | *int* |
2828
| [`has_left_row_indicator`](#has_left_row_indicator) | *int* |
2929
| [`has_right_row_indicator`](#has_right_row_indicator) | *int* |
30+
| [`codewords`](#codewords) | *List[int]* |
3031

3132
### rows
3233

@@ -47,3 +48,7 @@ Specifies whether the left row indicator of the PDF417 code exists.
4748
### has_right_row_indicator
4849

4950
Specifies whether the right row indicator of the PDF417 code exists.
51+
52+
### codewords
53+
54+
Specifies the codewords of the PDF417 barcode.

programming/python/release-notes/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ needAutoGenerateSidebar: false
88

99
# Release Notes for Python Edition
1010

11+
- [11.0.3000 (05/15/2025)](python-11.md#1103000-05152025)
1112
- [11.0.2000 (04/09/2025)](python-11.md#1102000-04092025)
1213
- [10.5.2100 (12/05/2024)](python-10.md#1052100-12052024)
1314
- [10.4.2100 (11/07/2024)](python-10.md#1042100-11072024)

programming/python/release-notes/python-11.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,23 @@ needGenerateH3Content: false
88

99
# Release Notes for Python Edition - 11.x
1010

11+
## 11.0.3000 (05/15/2025)
12+
13+
### New
14+
15+
- Added support for appending pages to PDF files generated by `ImageIO.save_to_file`. Appending to other PDF files is not supported.
16+
- Added new property [codewords]({{ site.dbr_python_api }}pdf417-details.html#codewords) to the `PDF417Details` class.
17+
18+
### Fixed
19+
20+
- Fixed an issue where calling `start_capturing` or `capture` with `template_name` set to an empty string ("") would result in error `-40103`.
21+
- Resolved a performance issue that could cause unusually high CPU and memory usage in some cases.
22+
23+
### Changed
24+
25+
- Removed the licensing requirement for saving PDFs.
26+
27+
1128
## 11.0.2000 (04/09/2025)
1229

1330
### [Highlights](https://www.dynamsoft.com/release-highlights/?product=dbr11.0)

0 commit comments

Comments
 (0)