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: aspose_barcode_cloud/api/barcode_api.py
+18-18Lines changed: 18 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -82,6 +82,7 @@ def get_barcode_generate(
82
82
supplement_data=None,
83
83
supplement_space=None,
84
84
bar_width_reduction=None,
85
+
use_anti_alias=None,
85
86
format=None,
86
87
async_req=False,
87
88
**kwargs
@@ -127,6 +128,7 @@ def get_barcode_generate(
127
128
:param str supplement_data: Supplement parameters. Used for Interleaved2of5, Standard2of5, EAN13, EAN8, UPCA, UPCE, ISBN, ISSN, ISMN. # noqa: E501
128
129
:param float supplement_space: Space between main the BarCode and supplement BarCode. # noqa: E501
129
130
:param float bar_width_reduction: Bars reduction value that is used to compensate ink spread while printing. # noqa: E501
131
+
:param bool use_anti_alias: Indicates whether is used anti-aliasing mode to render image. Anti-aliasing mode is applied to barcode and text drawing. # noqa: E501
130
132
:param str format: Result image format. # noqa: E501
:param str checksum_validation: Enable checksum validation during recognition for 1D barcodes. Default is treated as Yes for symbologies which must contain checksum, as No where checksum only possible. Checksum never used: Codabar Checksum is possible: Code39 Standard/Extended, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, DeutschePostIdentcode, DeutschePostLeitcode, VIN Checksum always used: Rest symbologies # noqa: E501
454
460
:param bool detect_encoding: A flag which force engine to detect codetext encoding for Unicode. # noqa: E501
455
461
:param str preset: Preset allows to configure recognition quality and speed manually. You can quickly set up Preset by embedded presets: HighPerformance, NormalQuality, HighQuality, MaxBarCodes or you can manually configure separate options. Default value of Preset is NormalQuality. # noqa: E501
456
-
:param int rect_x: Set X for area for recognition. # noqa: E501
457
-
:param int rect_y: Set Y for area for recognition. # noqa: E501
462
+
:param int rect_x: Set X of top left corner of area for recognition. # noqa: E501
463
+
:param int rect_y: Set Y of top left corner of area for recognition. # noqa: E501
458
464
:param int rect_width: Set Width of area for recognition. # noqa: E501
459
465
:param int rect_height: Set Height of area for recognition. # noqa: E501
460
466
:param bool strip_fnc: Value indicating whether FNC symbol strip must be done. # noqa: E501
@@ -483,7 +489,6 @@ def get_barcode_recognize(
483
489
:param bool read_tiny_barcodes: Allows engine to recognize tiny barcodes on large images. Ignored if AllowIncorrectBarcodes is set to True. Default value: False. # noqa: E501
484
490
:param str australian_post_encoding_table: Interpreting Type for the Customer Information of AustralianPost BarCode.Default is CustomerInformationInterpretingType.Other. # noqa: E501
485
491
:param bool ignore_ending_filling_patterns_for_c_table: The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding method does not have any gaps in encoding table and sequence \"333\" of filling patterns is decoded as letter \"z\". # noqa: E501
486
-
:param str rectangle_region: # noqa: E501
487
492
:param str storage: The image storage. # noqa: E501
:param str checksum_validation: Enable checksum validation during recognition for 1D barcodes. Default is treated as Yes for symbologies which must contain checksum, as No where checksum only possible. Checksum never used: Codabar Checksum is possible: Code39 Standard/Extended, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, DeutschePostIdentcode, DeutschePostLeitcode, VIN Checksum always used: Rest symbologies # noqa: E501
822
821
:param bool detect_encoding: A flag which force engine to detect codetext encoding for Unicode. # noqa: E501
823
822
:param str preset: Preset allows to configure recognition quality and speed manually. You can quickly set up Preset by embedded presets: HighPerformance, NormalQuality, HighQuality, MaxBarCodes or you can manually configure separate options. Default value of Preset is NormalQuality. # noqa: E501
824
-
:param int rect_x: Set X for area for recognition. # noqa: E501
825
-
:param int rect_y: Set Y for area for recognition. # noqa: E501
823
+
:param int rect_x: Set X of top left corner of area for recognition. # noqa: E501
824
+
:param int rect_y: Set Y of top left corner of area for recognition. # noqa: E501
826
825
:param int rect_width: Set Width of area for recognition. # noqa: E501
827
826
:param int rect_height: Set Height of area for recognition. # noqa: E501
828
827
:param bool strip_fnc: Value indicating whether FNC symbol strip must be done. # noqa: E501
:param bool read_tiny_barcodes: Allows engine to recognize tiny barcodes on large images. Ignored if AllowIncorrectBarcodes is set to True. Default value: False. # noqa: E501
852
851
:param str australian_post_encoding_table: Interpreting Type for the Customer Information of AustralianPost BarCode.Default is CustomerInformationInterpretingType.Other. # noqa: E501
853
852
:param bool ignore_ending_filling_patterns_for_c_table: The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding method does not have any gaps in encoding table and sequence \"333\" of filling patterns is decoded as letter \"z\". # noqa: E501
:param str supplement_data: Supplement parameters. Used for Interleaved2of5, Standard2of5, EAN13, EAN8, UPCA, UPCE, ISBN, ISSN, ISMN. # noqa: E501
1322
1316
:param float supplement_space: Space between main the BarCode and supplement BarCode. # noqa: E501
1323
1317
:param float bar_width_reduction: Bars reduction value that is used to compensate ink spread while printing. # noqa: E501
1318
+
:param bool use_anti_alias: Indicates whether is used anti-aliasing mode to render image. Anti-aliasing mode is applied to barcode and text drawing. # noqa: E501
0 commit comments