Skip to content

Commit c01a11c

Browse files
Barcode for Python via NET 25.12 API reference
1 parent 25b9687 commit c01a11c

43 files changed

Lines changed: 107 additions & 147 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

english/python-net/aspose.barcode.barcoderecognition/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Contains tools for the 1D/2D barcodes recognition.
2020
|[BarCodeRegionParameters](/barcode/python-net/aspose.barcode.barcoderecognition/barcoderegionparameters/)|Represents the recognized barcode's region and barcode angle|
2121
|[BarCodeResult](/barcode/python-net/aspose.barcode.barcoderecognition/barcoderesult/)|Stores recognized barcode data like [SingleDecodeType](/barcode/python-net/aspose.barcode.barcoderecognition/singledecodetype/) type, string codetext, <br/> [BarCodeRegionParameters](/barcode/python-net/aspose.barcode.barcoderecognition/barcoderegionparameters/) region and other parameters|
2222
|[BarcodeSettings](/barcode/python-net/aspose.barcode.barcoderecognition/barcodesettings/)|The main BarCode decoding parameters. Contains parameters which make influence on recognized data.|
23-
|[BaseDecodeType](/barcode/python-net/aspose.barcode.barcoderecognition/basedecodetype/)|Base class for MultyDecodeType and SingleDecodeType.|
23+
|[BaseDecodeType](/barcode/python-net/aspose.barcode.barcoderecognition/basedecodetype/)|Base class for MultiDecodeType and SingleDecodeType.|
2424
|[BaseExtendedParameters](/barcode/python-net/aspose.barcode.barcoderecognition/baseextendedparameters/)|Basic class for extended parameters of recognized barcode storing|
2525
|[CodabarExtendedParameters](/barcode/python-net/aspose.barcode.barcoderecognition/codabarextendedparameters/)|Stores a Codabar additional information of recognized barcode|
2626
|[Code128DataPortion](/barcode/python-net/aspose.barcode.barcoderecognition/code128dataportion/)|Contains the data of subtype for Code128 type barcode|
@@ -31,7 +31,7 @@ Contains tools for the 1D/2D barcodes recognition.
3131
|[DotCodeExtendedParameters](/barcode/python-net/aspose.barcode.barcoderecognition/dotcodeextendedparameters/)|Stores special data of DotCode recognized barcode|
3232
|[GS1CompositeBarExtendedParameters](/barcode/python-net/aspose.barcode.barcoderecognition/gs1compositebarextendedparameters/)|Stores special data of GS1 Composite Bar recognized barcode|
3333
|[MaxiCodeExtendedParameters](/barcode/python-net/aspose.barcode.barcoderecognition/maxicodeextendedparameters/)|Stores a MaxiCode additional information of recognized barcode|
34-
|[MultyDecodeType](/barcode/python-net/aspose.barcode.barcoderecognition/multydecodetype/)|Composite decode type.|
34+
|[MultiDecodeType](/barcode/python-net/aspose.barcode.barcoderecognition/multidecodetype/)|Composite decode type.|
3535
|[OneDExtendedParameters](/barcode/python-net/aspose.barcode.barcoderecognition/onedextendedparameters/)|Stores special data of 1D recognized barcode like separate codetext and checksum|
3636
|[Pdf417ExtendedParameters](/barcode/python-net/aspose.barcode.barcoderecognition/pdf417extendedparameters/)|Stores a MacroPdf417 metadata information of recognized barcode|
3737
|[QRExtendedParameters](/barcode/python-net/aspose.barcode.barcoderecognition/qrextendedparameters/)|Stores a QR Structured Append information of recognized barcode|

english/python-net/aspose.barcode.barcoderecognition/barcodereader/_index.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@ The BarCodeReader type exposes the following members:
1515
| Name | Description |
1616
| :- | :- |
1717
|BarCodeReader()|Initializes a new instance of the [BarCodeReader](/barcode/python-net/aspose.barcode.barcoderecognition/barcodereader/) class with default values.<br/> Requires to set image (SetBitmapImage()) before to call ReadBarCodes() method.|
18+
|BarCodeReader(image)|Initializes a new instance of the BarCodeReader class|
19+
|BarCodeReader(image, decode_types)|Initializes a new instance of the BarCodeReader class|
20+
|BarCodeReader(image, type)|Initializes a new instance of the BarCodeReader class|
21+
|BarCodeReader(image, area, decode_types)|Initializes a new instance of the BarCodeReader class|
22+
|BarCodeReader(image, area, type)|Initializes a new instance of the BarCodeReader class|
23+
|BarCodeReader(image, areas, decode_types)|Initializes a new instance of the BarCodeReader class|
24+
|BarCodeReader(image, areas, type)|Initializes a new instance of the BarCodeReader class|
1825
|BarCodeReader(filename)|Initializes a new instance of the BarCodeReader class|
1926
|BarCodeReader(filename, decode_types)|Initializes a new instance of the BarCodeReader class|
2027
|BarCodeReader(filename, type)|Initializes a new instance of the BarCodeReader class|
@@ -33,6 +40,9 @@ The BarCodeReader type exposes the following members:
3340
## Methods
3441
| Name | Description |
3542
| :- | :- |
43+
|set_bar_code_image(value)|Sets bitmap image for recognition. <br/> Must be called before ReadBarCodes() method.|
44+
|set_bar_code_image(value, areas)|Sets bitmap image and areas for recognition. <br/> Must be called before ReadBarCodes() method.|
45+
|set_bar_code_image(value, area)|Sets bitmap image and areas for recognition. <br/> Must be called before ReadBarCodes() method.|
3646
|set_bar_code_image(filename)|Sets image file for recognition. <br/> Must be called before ReadBarCodes() method.|
3747
|set_bar_code_image(stream)|Sets image stream for recognition. <br/> Must be called before ReadBarCodes() method.|
3848
|set_bar_code_read_type(barcode_types)|Sets [SingleDecodeType](/barcode/python-net/aspose.barcode.barcoderecognition/singledecodetype/) type array for recognition. <br/> Must be called before ReadBarCodes() method.|

english/python-net/aspose.barcode.barcoderecognition/barcoderegionparameters/_index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ The BarCodeRegionParameters type exposes the following members:
1616
| :- | :- |
1717
|quadrangle|Gets [Quadrangle](/barcode/python-net/aspose.barcode.barcoderecognition/quadrangle/) bounding barcode region|
1818
|angle|Gets the angle of the barcode (0-360).|
19+
|points|Gets s array bounding barcode region|
20+
|rectangle|Gets bounding barcode region|
1921

2022
### See Also
2123

english/python-net/aspose.barcode.barcoderecognition/basedecodetype/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ url: /python-net/aspose.barcode.barcoderecognition/basedecodetype/
88

99
## BaseDecodeType class
1010

11-
Base class for MultyDecodeType and SingleDecodeType.
11+
Base class for MultiDecodeType and SingleDecodeType.
1212

1313
The BaseDecodeType type exposes the following members:
1414
## Methods
1515
| Name | Description |
1616
| :- | :- |
1717
|equals(other)|Returns a value indicating whether this instance is equal to a specified [SingleDecodeType](/barcode/python-net/aspose.barcode.barcoderecognition/singledecodetype/) value.|
18-
|equals(other)|Returns a value indicating whether this instance is equal to a specified [MultyDecodeType](/barcode/python-net/aspose.barcode.barcoderecognition/multydecodetype/) value.|
18+
|equals(other)|Returns a value indicating whether this instance is equal to a specified [MultiDecodeType](/barcode/python-net/aspose.barcode.barcoderecognition/multidecodetype/) value.|
1919
|equals(other)|Returns a value indicating whether this instance is equal to a specified [SingleDecodeType](/barcode/python-net/aspose.barcode.barcoderecognition/singledecodetype/) value.|
2020
|try_parse(parsing_type, result)| |
2121
|try_parse(parsing_type, result)| |

english/python-net/aspose.barcode.barcoderecognition/codabarextendedparameters/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ The CodabarExtendedParameters type exposes the following members:
1515
| Name | Description |
1616
| :- | :- |
1717
|is_empty|Tests whether all parameters has only default values|
18-
|codabar_start_symbol|Gets or sets a Codabar start symbol.<br/> Default value: CodabarSymbol.A|
19-
|codabar_stop_symbol|Gets or sets a Codabar stop symbol.<br/> Default value: CodabarSymbol.A|
18+
|start_symbol|Gets or sets a Codabar start symbol.<br/> Default value: CodabarSymbol.A|
19+
|stop_symbol|Gets or sets a Codabar stop symbol.<br/> Default value: CodabarSymbol.A|
2020

2121
### See Also
2222

english/python-net/aspose.barcode.barcoderecognition/dotcodeextendedparameters/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ The DotCodeExtendedParameters type exposes the following members:
1515
| Name | Description |
1616
| :- | :- |
1717
|is_empty|Tests whether all parameters has only default values|
18-
|dot_code_structured_append_mode_barcodes_count|Gets the DotCode structured append mode barcodes count. Default value is -1. Count must be a value from 1 to 35.|
19-
|dot_code_structured_append_mode_barcode_id|Gets the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1.|
20-
|dot_code_is_reader_initialization|Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader.<br/> Default value is false.|
18+
|structured_append_mode_barcodes_count|Gets the DotCode structured append mode barcodes count. Default value is -1. Count must be a value from 1 to 35.|
19+
|structured_append_mode_barcode_id|Gets the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1.|
20+
|is_reader_initialization|Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader.<br/> Default value is false.|
2121

2222
### See Also
2323

english/python-net/aspose.barcode.barcoderecognition/maxicodeextendedparameters/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ The MaxiCodeExtendedParameters type exposes the following members:
1515
| Name | Description |
1616
| :- | :- |
1717
|is_empty|Tests whether all parameters has only default values|
18-
|maxi_code_mode|Gets or sets a MaxiCode encode mode.<br/> Default value: Mode4|
19-
|maxi_code_structured_append_mode_barcode_id|Gets or sets a MaxiCode barcode id in structured append mode.<br/> Default value: 0|
20-
|maxi_code_structured_append_mode_barcodes_count|Gets or sets a MaxiCode barcodes count in structured append mode.<br/> Default value: -1|
18+
|mode|Gets or sets a MaxiCode encode mode.<br/> Default value: Mode4|
19+
|structured_append_mode_barcode_id|Gets or sets a MaxiCode barcode id in structured append mode.<br/> Default value: 0|
20+
|structured_append_mode_barcodes_count|Gets or sets a MaxiCode barcodes count in structured append mode.<br/> Default value: -1|
2121

2222
### See Also
2323

english/python-net/aspose.barcode.barcoderecognition/multydecodetype/_index.md

Lines changed: 0 additions & 42 deletions
This file was deleted.

english/python-net/aspose.barcode.barcoderecognition/qrextendedparameters/_index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ The QRExtendedParameters type exposes the following members:
1515
| Name | Description |
1616
| :- | :- |
1717
|is_empty|Tests whether all parameters has only default values|
18-
|qr_structured_append_mode_bar_codes_quantity|Gets the QR structured append mode barcodes quantity. Default value is -1.|
19-
|qr_structured_append_mode_bar_code_index|Gets the index of the QR structured append mode barcode. Index starts from 0. Default value is -1.|
20-
|qr_structured_append_mode_parity_data|Gets the QR structured append mode parity data. Default value is -1.|
21-
|qr_version|Version of recognized QR Code. From Version1 to Version40.|
18+
|structured_append_mode_bar_codes_quantity|Gets the QR structured append mode barcodes quantity. Default value is -1.|
19+
|structured_append_mode_bar_code_index|Gets the index of the QR structured append mode barcode. Index starts from 0. Default value is -1.|
20+
|structured_append_mode_parity_data|Gets the QR structured append mode parity data. Default value is -1.|
21+
|version|Version of recognized QR Code. From Version1 to Version40.|
2222
|micro_qr_version|Version of recognized MicroQR Code. From M1 to M4.|
2323
|rect_micro_qr_version|Version of recognized RectMicroQR Code. From R7x43 to R17x139.|
24-
|qr_error_level|Reed-Solomon error correction level of recognized barcode. From low to high: LevelL, LevelM, LevelQ, LevelH.|
24+
|error_level|Reed-Solomon error correction level of recognized barcode. From low to high: LevelL, LevelM, LevelQ, LevelH.|
2525

2626
### See Also
2727

english/python-net/aspose.barcode.barcoderecognition/quadrangle/_index.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,24 @@ The Quadrangle type exposes the following members:
1515
| Name | Description |
1616
| :- | :- |
1717
|Quadrangle()|Initializes a new empty instance of the [Quadrangle](/barcode/python-net/aspose.barcode.barcoderecognition/quadrangle/) class.|
18+
|Quadrangle(left_top, right_top, right_bottom, left_bottom)|Initializes a new instance of the Quadrangle class|
1819
## Properties
1920
| Name | Description |
2021
| :- | :- |
22+
|left_top|Gets left-top corner of [Quadrangle](/barcode/python-net/aspose.barcode.barcoderecognition/quadrangle/) region|
23+
|right_top|Gets right-top corner of [Quadrangle](/barcode/python-net/aspose.barcode.barcoderecognition/quadrangle/) region|
24+
|right_bottom|Gets right-bottom corner of [Quadrangle](/barcode/python-net/aspose.barcode.barcoderecognition/quadrangle/) region|
25+
|left_bottom|Gets left-bottom corner of [Quadrangle](/barcode/python-net/aspose.barcode.barcoderecognition/quadrangle/) region|
2126
|is_empty|Tests whether all s of this [Quadrangle](/barcode/python-net/aspose.barcode.barcoderecognition/quadrangle/) have values of zero.|
27+
|bounding_rectangle|Gets bounding this [Quadrangle](/barcode/python-net/aspose.barcode.barcoderecognition/quadrangle/)|
2228
|EMPTY|Represents a [Quadrangle](/barcode/python-net/aspose.barcode.barcoderecognition/quadrangle/) class with its properties left uninitialized.|
2329
## Methods
2430
| Name | Description |
2531
| :- | :- |
32+
|contains(pt)|Determines if the specified is contained within this [Quadrangle](/barcode/python-net/aspose.barcode.barcoderecognition/quadrangle/) class.|
2633
|contains(x, y)| |
2734
|contains(quad)|Determines if the specified is contained within this [Quadrangle](/barcode/python-net/aspose.barcode.barcoderecognition/quadrangle/) class.|
35+
|contains(rect)|Determines if the specified is contained or intersect this [Quadrangle](/barcode/python-net/aspose.barcode.barcoderecognition/quadrangle/) class.|
2836
|equals(other)|Returns a value indicating whether this instance is equal to a specified [Quadrangle](/barcode/python-net/aspose.barcode.barcoderecognition/quadrangle/) value.|
2937

3038
### See Also

0 commit comments

Comments
 (0)