diff --git a/LICENSE b/LICENSE index d39ca27..efcf55b 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2023 Aspose Pty Ltd +Copyright (c) 2024 Aspose Pty Ltd Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 78e10ca..ccbb70d 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![PyPI](https://img.shields.io/pypi/v/aspose-barcode-cloud)](https://pypi.org/project/aspose-barcode-cloud/) - API version: 3.0 -- Package version: 23.12.0 +- Package version: 24.1.0 ## Demo applications diff --git a/aspose_barcode_cloud/__init__.py b/aspose_barcode_cloud/__init__.py index 8f7cd0c..abc3da6 100644 --- a/aspose_barcode_cloud/__init__.py +++ b/aspose_barcode_cloud/__init__.py @@ -4,7 +4,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/api/barcode_api.py b/aspose_barcode_cloud/api/barcode_api.py index 7aefe99..fe99be9 100644 --- a/aspose_barcode_cloud/api/barcode_api.py +++ b/aspose_barcode_cloud/api/barcode_api.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -410,6 +410,7 @@ def get_barcode_recognize( self, name, type=None, + types=None, checksum_validation=None, detect_encoding=None, preset=None, @@ -458,6 +459,7 @@ def get_barcode_recognize( :param str name: The image file name. # noqa: E501 :param str type: The type of barcode to read. # noqa: E501 + :param list[DecodeBarcodeType] types: Multiple barcode types to read. # 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 :param bool detect_encoding: A flag which force engine to detect codetext encoding for Unicode. # noqa: E501 :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 @@ -504,6 +506,7 @@ def get_barcode_recognize( return self.get_barcode_recognize_with_http_info( name, type=type, + types=types, checksum_validation=checksum_validation, detect_encoding=detect_encoding, preset=preset, @@ -546,6 +549,7 @@ def get_barcode_recognize( (data) = self.get_barcode_recognize_with_http_info( name, type=type, + types=types, checksum_validation=checksum_validation, detect_encoding=detect_encoding, preset=preset, @@ -603,6 +607,7 @@ def get_barcode_recognize_with_http_info(self, name, **kwargs): all_params = { "name", "type", + "types", "checksum_validation", "detect_encoding", "preset", @@ -667,6 +672,9 @@ def get_barcode_recognize_with_http_info(self, name, **kwargs): query_params = [] if "type" in params: query_params.append(("Type", params["type"])) + if "types" in params: + query_params.append(("Types", params["types"])) + collection_formats["Types"] = "multi" if "checksum_validation" in params: query_params.append(("ChecksumValidation", params["checksum_validation"])) if "detect_encoding" in params: @@ -779,6 +787,7 @@ def get_barcode_recognize_with_http_info(self, name, **kwargs): def post_barcode_recognize_from_url_or_content( self, type=None, + types=None, checksum_validation=None, detect_encoding=None, preset=None, @@ -826,6 +835,7 @@ def post_barcode_recognize_from_url_or_content( >>> result = thread.get() :param str type: The type of barcode to read. # noqa: E501 + :param list[DecodeBarcodeType] types: Multiple barcode types to read. # 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 :param bool detect_encoding: A flag which force engine to detect codetext encoding for Unicode. # noqa: E501 :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 @@ -871,6 +881,7 @@ def post_barcode_recognize_from_url_or_content( if async_req: return self.post_barcode_recognize_from_url_or_content_with_http_info( type=type, + types=types, checksum_validation=checksum_validation, detect_encoding=detect_encoding, preset=preset, @@ -912,6 +923,7 @@ def post_barcode_recognize_from_url_or_content( else: (data) = self.post_barcode_recognize_from_url_or_content_with_http_info( type=type, + types=types, checksum_validation=checksum_validation, detect_encoding=detect_encoding, preset=preset, @@ -967,6 +979,7 @@ def post_barcode_recognize_from_url_or_content_with_http_info(self, **kwargs): all_params = { "type", + "types", "checksum_validation", "detect_encoding", "preset", @@ -1029,6 +1042,9 @@ def post_barcode_recognize_from_url_or_content_with_http_info(self, **kwargs): query_params = [] if "type" in params: query_params.append(("Type", params["type"])) + if "types" in params: + query_params.append(("Types", params["types"])) + collection_formats["Types"] = "multi" if "checksum_validation" in params: query_params.append(("ChecksumValidation", params["checksum_validation"])) if "detect_encoding" in params: diff --git a/aspose_barcode_cloud/api/file_api.py b/aspose_barcode_cloud/api/file_api.py index a5c9189..32b20cb 100644 --- a/aspose_barcode_cloud/api/file_api.py +++ b/aspose_barcode_cloud/api/file_api.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/api/folder_api.py b/aspose_barcode_cloud/api/folder_api.py index 2001f5e..ea6080c 100644 --- a/aspose_barcode_cloud/api/folder_api.py +++ b/aspose_barcode_cloud/api/folder_api.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/api/storage_api.py b/aspose_barcode_cloud/api/storage_api.py index 57d3c50..8305c7b 100644 --- a/aspose_barcode_cloud/api/storage_api.py +++ b/aspose_barcode_cloud/api/storage_api.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/api_client.py b/aspose_barcode_cloud/api_client.py index 7077f96..53fa2c1 100644 --- a/aspose_barcode_cloud/api_client.py +++ b/aspose_barcode_cloud/api_client.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -90,13 +90,13 @@ def __init__(self, configuration=None, header_name=None, header_value=None, cook self.rest_client = RESTClientObject(configuration) self.default_headers = { "x-aspose-client": "python sdk", - "x-aspose-client-version": "23.12.0", + "x-aspose-client-version": "24.1.0", } if header_name is not None: self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = "Aspose-Barcode-SDK/23.12.0/python" + self.user_agent = "Aspose-Barcode-SDK/24.1.0/python" def __del__(self): self.rest_client.close() diff --git a/aspose_barcode_cloud/configuration.py b/aspose_barcode_cloud/configuration.py index fdbcb18..fbd69f2 100644 --- a/aspose_barcode_cloud/configuration.py +++ b/aspose_barcode_cloud/configuration.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -286,7 +286,7 @@ def to_debug_report(self): "OS: {env}\n" "Python Version: {pyversion}\n" "Version of the API: 3.0\n" - "SDK Package Version: 23.12.0".format(env=sys.platform, pyversion=sys.version) + "SDK Package Version: 24.1.0".format(env=sys.platform, pyversion=sys.version) ) @staticmethod diff --git a/aspose_barcode_cloud/models/__init__.py b/aspose_barcode_cloud/models/__init__.py index 4fc4657..b4f0cd2 100644 --- a/aspose_barcode_cloud/models/__init__.py +++ b/aspose_barcode_cloud/models/__init__.py @@ -3,7 +3,7 @@ # flake8: noqa """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/api_error.py b/aspose_barcode_cloud/models/api_error.py index 29ebdd6..7df4d73 100644 --- a/aspose_barcode_cloud/models/api_error.py +++ b/aspose_barcode_cloud/models/api_error.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/api_error_response.py b/aspose_barcode_cloud/models/api_error_response.py index e272181..64d4ae5 100644 --- a/aspose_barcode_cloud/models/api_error_response.py +++ b/aspose_barcode_cloud/models/api_error_response.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/australian_post_params.py b/aspose_barcode_cloud/models/australian_post_params.py index b30a1e0..23616fa 100644 --- a/aspose_barcode_cloud/models/australian_post_params.py +++ b/aspose_barcode_cloud/models/australian_post_params.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/auto_size_mode.py b/aspose_barcode_cloud/models/auto_size_mode.py index cacdd0c..6437f90 100644 --- a/aspose_barcode_cloud/models/auto_size_mode.py +++ b/aspose_barcode_cloud/models/auto_size_mode.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/available_graphics_unit.py b/aspose_barcode_cloud/models/available_graphics_unit.py index af0560c..144cb7e 100644 --- a/aspose_barcode_cloud/models/available_graphics_unit.py +++ b/aspose_barcode_cloud/models/available_graphics_unit.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/aztec_encode_mode.py b/aspose_barcode_cloud/models/aztec_encode_mode.py index 2cb4703..5771bf0 100644 --- a/aspose_barcode_cloud/models/aztec_encode_mode.py +++ b/aspose_barcode_cloud/models/aztec_encode_mode.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/aztec_params.py b/aspose_barcode_cloud/models/aztec_params.py index d4f43a8..a55bc49 100644 --- a/aspose_barcode_cloud/models/aztec_params.py +++ b/aspose_barcode_cloud/models/aztec_params.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/aztec_symbol_mode.py b/aspose_barcode_cloud/models/aztec_symbol_mode.py index 3852a60..2358d72 100644 --- a/aspose_barcode_cloud/models/aztec_symbol_mode.py +++ b/aspose_barcode_cloud/models/aztec_symbol_mode.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/barcode_response.py b/aspose_barcode_cloud/models/barcode_response.py index 4333134..f72b471 100644 --- a/aspose_barcode_cloud/models/barcode_response.py +++ b/aspose_barcode_cloud/models/barcode_response.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/barcode_response_list.py b/aspose_barcode_cloud/models/barcode_response_list.py index 61dfcbf..eff785f 100644 --- a/aspose_barcode_cloud/models/barcode_response_list.py +++ b/aspose_barcode_cloud/models/barcode_response_list.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/border_dash_style.py b/aspose_barcode_cloud/models/border_dash_style.py index 4062d20..f9d6857 100644 --- a/aspose_barcode_cloud/models/border_dash_style.py +++ b/aspose_barcode_cloud/models/border_dash_style.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/caption_params.py b/aspose_barcode_cloud/models/caption_params.py index bf74f93..60dcaf9 100644 --- a/aspose_barcode_cloud/models/caption_params.py +++ b/aspose_barcode_cloud/models/caption_params.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/checksum_validation.py b/aspose_barcode_cloud/models/checksum_validation.py index 612f6bf..7cd1731 100644 --- a/aspose_barcode_cloud/models/checksum_validation.py +++ b/aspose_barcode_cloud/models/checksum_validation.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/codabar_checksum_mode.py b/aspose_barcode_cloud/models/codabar_checksum_mode.py index e15f885..bf344ed 100644 --- a/aspose_barcode_cloud/models/codabar_checksum_mode.py +++ b/aspose_barcode_cloud/models/codabar_checksum_mode.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/codabar_params.py b/aspose_barcode_cloud/models/codabar_params.py index ec62144..bc892b7 100644 --- a/aspose_barcode_cloud/models/codabar_params.py +++ b/aspose_barcode_cloud/models/codabar_params.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/codabar_symbol.py b/aspose_barcode_cloud/models/codabar_symbol.py index 5843b1a..47caf51 100644 --- a/aspose_barcode_cloud/models/codabar_symbol.py +++ b/aspose_barcode_cloud/models/codabar_symbol.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/codablock_params.py b/aspose_barcode_cloud/models/codablock_params.py index f27b001..cfa48e0 100644 --- a/aspose_barcode_cloud/models/codablock_params.py +++ b/aspose_barcode_cloud/models/codablock_params.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/code128_emulation.py b/aspose_barcode_cloud/models/code128_emulation.py index 162c075..c7577c7 100644 --- a/aspose_barcode_cloud/models/code128_emulation.py +++ b/aspose_barcode_cloud/models/code128_emulation.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/code128_encode_mode.py b/aspose_barcode_cloud/models/code128_encode_mode.py index 8593f9a..460ab87 100644 --- a/aspose_barcode_cloud/models/code128_encode_mode.py +++ b/aspose_barcode_cloud/models/code128_encode_mode.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/code128_params.py b/aspose_barcode_cloud/models/code128_params.py index 2c7e578..c4bcf2c 100644 --- a/aspose_barcode_cloud/models/code128_params.py +++ b/aspose_barcode_cloud/models/code128_params.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/code16_k_params.py b/aspose_barcode_cloud/models/code16_k_params.py index 7966636..f8ee348 100644 --- a/aspose_barcode_cloud/models/code16_k_params.py +++ b/aspose_barcode_cloud/models/code16_k_params.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/code_location.py b/aspose_barcode_cloud/models/code_location.py index 08cc402..d188f03 100644 --- a/aspose_barcode_cloud/models/code_location.py +++ b/aspose_barcode_cloud/models/code_location.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/coupon_params.py b/aspose_barcode_cloud/models/coupon_params.py index 5ff6cb5..cd3b794 100644 --- a/aspose_barcode_cloud/models/coupon_params.py +++ b/aspose_barcode_cloud/models/coupon_params.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/customer_information_interpreting_type.py b/aspose_barcode_cloud/models/customer_information_interpreting_type.py index 45a50cf..dc0b3f7 100644 --- a/aspose_barcode_cloud/models/customer_information_interpreting_type.py +++ b/aspose_barcode_cloud/models/customer_information_interpreting_type.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/data_bar_params.py b/aspose_barcode_cloud/models/data_bar_params.py index 4bd18f5..fc6f9f5 100644 --- a/aspose_barcode_cloud/models/data_bar_params.py +++ b/aspose_barcode_cloud/models/data_bar_params.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/data_matrix_ecc_type.py b/aspose_barcode_cloud/models/data_matrix_ecc_type.py index a070ee7..d0f4661 100644 --- a/aspose_barcode_cloud/models/data_matrix_ecc_type.py +++ b/aspose_barcode_cloud/models/data_matrix_ecc_type.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/data_matrix_encode_mode.py b/aspose_barcode_cloud/models/data_matrix_encode_mode.py index ed11e87..ecd6237 100644 --- a/aspose_barcode_cloud/models/data_matrix_encode_mode.py +++ b/aspose_barcode_cloud/models/data_matrix_encode_mode.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/data_matrix_params.py b/aspose_barcode_cloud/models/data_matrix_params.py index 3864982..5dfdc81 100644 --- a/aspose_barcode_cloud/models/data_matrix_params.py +++ b/aspose_barcode_cloud/models/data_matrix_params.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/data_matrix_version.py b/aspose_barcode_cloud/models/data_matrix_version.py index 3c3237a..779ff9f 100644 --- a/aspose_barcode_cloud/models/data_matrix_version.py +++ b/aspose_barcode_cloud/models/data_matrix_version.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/decode_barcode_type.py b/aspose_barcode_cloud/models/decode_barcode_type.py index aba2232..e68140e 100644 --- a/aspose_barcode_cloud/models/decode_barcode_type.py +++ b/aspose_barcode_cloud/models/decode_barcode_type.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -125,6 +125,7 @@ class DecodeBarcodeType(object): GS1AZTEC = "GS1Aztec" GS1COMPOSITEBAR = "GS1CompositeBar" GS1MICROPDF417 = "GS1MicroPdf417" + MOSTCOMMONLYUSED = "mostCommonlyUsed" """ Attributes: diff --git a/aspose_barcode_cloud/models/disc_usage.py b/aspose_barcode_cloud/models/disc_usage.py index 257f6cf..c6132e5 100644 --- a/aspose_barcode_cloud/models/disc_usage.py +++ b/aspose_barcode_cloud/models/disc_usage.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/dot_code_encode_mode.py b/aspose_barcode_cloud/models/dot_code_encode_mode.py index c66cd41..4f5e714 100644 --- a/aspose_barcode_cloud/models/dot_code_encode_mode.py +++ b/aspose_barcode_cloud/models/dot_code_encode_mode.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/dot_code_params.py b/aspose_barcode_cloud/models/dot_code_params.py index 1f45209..ab975a0 100644 --- a/aspose_barcode_cloud/models/dot_code_params.py +++ b/aspose_barcode_cloud/models/dot_code_params.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/eci_encodings.py b/aspose_barcode_cloud/models/eci_encodings.py index afc467b..41e97d2 100644 --- a/aspose_barcode_cloud/models/eci_encodings.py +++ b/aspose_barcode_cloud/models/eci_encodings.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/enable_checksum.py b/aspose_barcode_cloud/models/enable_checksum.py index 296d9e9..5b1b1ad 100644 --- a/aspose_barcode_cloud/models/enable_checksum.py +++ b/aspose_barcode_cloud/models/enable_checksum.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/encode_barcode_type.py b/aspose_barcode_cloud/models/encode_barcode_type.py index 95da3bc..97665c2 100644 --- a/aspose_barcode_cloud/models/encode_barcode_type.py +++ b/aspose_barcode_cloud/models/encode_barcode_type.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/error.py b/aspose_barcode_cloud/models/error.py index 94c8f98..0f51e7f 100644 --- a/aspose_barcode_cloud/models/error.py +++ b/aspose_barcode_cloud/models/error.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/error_details.py b/aspose_barcode_cloud/models/error_details.py index 99d193e..71a1c59 100644 --- a/aspose_barcode_cloud/models/error_details.py +++ b/aspose_barcode_cloud/models/error_details.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/file_version.py b/aspose_barcode_cloud/models/file_version.py index 456ad02..e835feb 100644 --- a/aspose_barcode_cloud/models/file_version.py +++ b/aspose_barcode_cloud/models/file_version.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/file_versions.py b/aspose_barcode_cloud/models/file_versions.py index 8c95e1a..5c12f25 100644 --- a/aspose_barcode_cloud/models/file_versions.py +++ b/aspose_barcode_cloud/models/file_versions.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/files_list.py b/aspose_barcode_cloud/models/files_list.py index dd3941a..89865ad 100644 --- a/aspose_barcode_cloud/models/files_list.py +++ b/aspose_barcode_cloud/models/files_list.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/files_upload_result.py b/aspose_barcode_cloud/models/files_upload_result.py index 56236ab..8f0cce5 100644 --- a/aspose_barcode_cloud/models/files_upload_result.py +++ b/aspose_barcode_cloud/models/files_upload_result.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/font_mode.py b/aspose_barcode_cloud/models/font_mode.py index 7e90cca..8c42b66 100644 --- a/aspose_barcode_cloud/models/font_mode.py +++ b/aspose_barcode_cloud/models/font_mode.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/font_params.py b/aspose_barcode_cloud/models/font_params.py index a9f6e9a..ce1516f 100644 --- a/aspose_barcode_cloud/models/font_params.py +++ b/aspose_barcode_cloud/models/font_params.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/font_style.py b/aspose_barcode_cloud/models/font_style.py index aa68c8d..3ab4be0 100644 --- a/aspose_barcode_cloud/models/font_style.py +++ b/aspose_barcode_cloud/models/font_style.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/generator_params.py b/aspose_barcode_cloud/models/generator_params.py index acd9ce5..e3e6ebf 100644 --- a/aspose_barcode_cloud/models/generator_params.py +++ b/aspose_barcode_cloud/models/generator_params.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/generator_params_list.py b/aspose_barcode_cloud/models/generator_params_list.py index 5d99dd1..5f5f5a1 100644 --- a/aspose_barcode_cloud/models/generator_params_list.py +++ b/aspose_barcode_cloud/models/generator_params_list.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/han_xin_encode_mode.py b/aspose_barcode_cloud/models/han_xin_encode_mode.py index b4a74bd..ea08b24 100644 --- a/aspose_barcode_cloud/models/han_xin_encode_mode.py +++ b/aspose_barcode_cloud/models/han_xin_encode_mode.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/han_xin_error_level.py b/aspose_barcode_cloud/models/han_xin_error_level.py index 0943bf1..a7081e5 100644 --- a/aspose_barcode_cloud/models/han_xin_error_level.py +++ b/aspose_barcode_cloud/models/han_xin_error_level.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/han_xin_params.py b/aspose_barcode_cloud/models/han_xin_params.py index 213bcf4..9efa643 100644 --- a/aspose_barcode_cloud/models/han_xin_params.py +++ b/aspose_barcode_cloud/models/han_xin_params.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/han_xin_version.py b/aspose_barcode_cloud/models/han_xin_version.py index 209c881..acf08d8 100644 --- a/aspose_barcode_cloud/models/han_xin_version.py +++ b/aspose_barcode_cloud/models/han_xin_version.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/itf14_border_type.py b/aspose_barcode_cloud/models/itf14_border_type.py index 3e98a3a..dfa04b1 100644 --- a/aspose_barcode_cloud/models/itf14_border_type.py +++ b/aspose_barcode_cloud/models/itf14_border_type.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/itf_params.py b/aspose_barcode_cloud/models/itf_params.py index a1cded9..98ca3c8 100644 --- a/aspose_barcode_cloud/models/itf_params.py +++ b/aspose_barcode_cloud/models/itf_params.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/macro_character.py b/aspose_barcode_cloud/models/macro_character.py index bc7376f..5bd8394 100644 --- a/aspose_barcode_cloud/models/macro_character.py +++ b/aspose_barcode_cloud/models/macro_character.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/maxi_code_encode_mode.py b/aspose_barcode_cloud/models/maxi_code_encode_mode.py index 4aa985c..ce2c6e0 100644 --- a/aspose_barcode_cloud/models/maxi_code_encode_mode.py +++ b/aspose_barcode_cloud/models/maxi_code_encode_mode.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/maxi_code_mode.py b/aspose_barcode_cloud/models/maxi_code_mode.py index d8a8267..fb891a3 100644 --- a/aspose_barcode_cloud/models/maxi_code_mode.py +++ b/aspose_barcode_cloud/models/maxi_code_mode.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/maxi_code_params.py b/aspose_barcode_cloud/models/maxi_code_params.py index 30c329b..f77566f 100644 --- a/aspose_barcode_cloud/models/maxi_code_params.py +++ b/aspose_barcode_cloud/models/maxi_code_params.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/object_exist.py b/aspose_barcode_cloud/models/object_exist.py index 284d60f..34849d7 100644 --- a/aspose_barcode_cloud/models/object_exist.py +++ b/aspose_barcode_cloud/models/object_exist.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/padding.py b/aspose_barcode_cloud/models/padding.py index 89afc97..69d09a9 100644 --- a/aspose_barcode_cloud/models/padding.py +++ b/aspose_barcode_cloud/models/padding.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/patch_code_params.py b/aspose_barcode_cloud/models/patch_code_params.py index 7286420..cfc9e01 100644 --- a/aspose_barcode_cloud/models/patch_code_params.py +++ b/aspose_barcode_cloud/models/patch_code_params.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/patch_format.py b/aspose_barcode_cloud/models/patch_format.py index 58f8131..23917bd 100644 --- a/aspose_barcode_cloud/models/patch_format.py +++ b/aspose_barcode_cloud/models/patch_format.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/pdf417_compaction_mode.py b/aspose_barcode_cloud/models/pdf417_compaction_mode.py index d9a5245..819186e 100644 --- a/aspose_barcode_cloud/models/pdf417_compaction_mode.py +++ b/aspose_barcode_cloud/models/pdf417_compaction_mode.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/pdf417_error_level.py b/aspose_barcode_cloud/models/pdf417_error_level.py index 775664d..ad6e50f 100644 --- a/aspose_barcode_cloud/models/pdf417_error_level.py +++ b/aspose_barcode_cloud/models/pdf417_error_level.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/pdf417_macro_terminator.py b/aspose_barcode_cloud/models/pdf417_macro_terminator.py index 02b4d1a..507a793 100644 --- a/aspose_barcode_cloud/models/pdf417_macro_terminator.py +++ b/aspose_barcode_cloud/models/pdf417_macro_terminator.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/pdf417_params.py b/aspose_barcode_cloud/models/pdf417_params.py index 8b8606a..a97cbb2 100644 --- a/aspose_barcode_cloud/models/pdf417_params.py +++ b/aspose_barcode_cloud/models/pdf417_params.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/postal_params.py b/aspose_barcode_cloud/models/postal_params.py index f9d362b..ecbc749 100644 --- a/aspose_barcode_cloud/models/postal_params.py +++ b/aspose_barcode_cloud/models/postal_params.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/preset_type.py b/aspose_barcode_cloud/models/preset_type.py index 7d12cc6..4bd0844 100644 --- a/aspose_barcode_cloud/models/preset_type.py +++ b/aspose_barcode_cloud/models/preset_type.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/qr_encode_mode.py b/aspose_barcode_cloud/models/qr_encode_mode.py index 04be180..e8b1613 100644 --- a/aspose_barcode_cloud/models/qr_encode_mode.py +++ b/aspose_barcode_cloud/models/qr_encode_mode.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/qr_encode_type.py b/aspose_barcode_cloud/models/qr_encode_type.py index d19e46f..4b1d1d1 100644 --- a/aspose_barcode_cloud/models/qr_encode_type.py +++ b/aspose_barcode_cloud/models/qr_encode_type.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/qr_error_level.py b/aspose_barcode_cloud/models/qr_error_level.py index cfcfd98..4f31b83 100644 --- a/aspose_barcode_cloud/models/qr_error_level.py +++ b/aspose_barcode_cloud/models/qr_error_level.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/qr_params.py b/aspose_barcode_cloud/models/qr_params.py index ecce508..bff72dd 100644 --- a/aspose_barcode_cloud/models/qr_params.py +++ b/aspose_barcode_cloud/models/qr_params.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/qr_version.py b/aspose_barcode_cloud/models/qr_version.py index 4e3b8cf..0559007 100644 --- a/aspose_barcode_cloud/models/qr_version.py +++ b/aspose_barcode_cloud/models/qr_version.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/reader_params.py b/aspose_barcode_cloud/models/reader_params.py index 6d5cae1..4bf0f4f 100644 --- a/aspose_barcode_cloud/models/reader_params.py +++ b/aspose_barcode_cloud/models/reader_params.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -47,6 +47,7 @@ class ReaderParams(object): """ swagger_types = { "type": "DecodeBarcodeType", + "types": "list[DecodeBarcodeType]", "checksum_validation": "ChecksumValidation", "detect_encoding": "bool", "preset": "PresetType", @@ -85,6 +86,7 @@ class ReaderParams(object): attribute_map = { "type": "Type", + "types": "Types", "checksum_validation": "ChecksumValidation", "detect_encoding": "DetectEncoding", "preset": "Preset", @@ -124,6 +126,7 @@ class ReaderParams(object): def __init__( self, type=None, + types=None, checksum_validation=None, detect_encoding=None, preset=None, @@ -162,6 +165,7 @@ def __init__( """ReaderParams - a model defined in Swagger""" # noqa: E501 self._type = None + self._types = None self._checksum_validation = None self._detect_encoding = None self._preset = None @@ -200,6 +204,8 @@ def __init__( if type is not None: self.type = type + if types is not None: + self.types = types if checksum_validation is not None: self.checksum_validation = checksum_validation if detect_encoding is not None: @@ -292,6 +298,29 @@ def type(self, type): self._type = type + @property + def types(self): + """Gets the types of this ReaderParams. # noqa: E501 + + Multiple barcode types to read. # noqa: E501 + + :return: The types of this ReaderParams. # noqa: E501 + :rtype: list[DecodeBarcodeType] + """ + return self._types + + @types.setter + def types(self, types): + """Sets the types of this ReaderParams. + + Multiple barcode types to read. # noqa: E501 + + :param types: The types of this ReaderParams. # noqa: E501 + :type: list[DecodeBarcodeType] + """ + + self._types = types + @property def checksum_validation(self): """Gets the checksum_validation of this ReaderParams. # noqa: E501 diff --git a/aspose_barcode_cloud/models/region_point.py b/aspose_barcode_cloud/models/region_point.py index 2805820..49dfa6d 100644 --- a/aspose_barcode_cloud/models/region_point.py +++ b/aspose_barcode_cloud/models/region_point.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/result_image_info.py b/aspose_barcode_cloud/models/result_image_info.py index 7665630..d34f7ba 100644 --- a/aspose_barcode_cloud/models/result_image_info.py +++ b/aspose_barcode_cloud/models/result_image_info.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/storage_exist.py b/aspose_barcode_cloud/models/storage_exist.py index 71fd32b..35cfd3c 100644 --- a/aspose_barcode_cloud/models/storage_exist.py +++ b/aspose_barcode_cloud/models/storage_exist.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/storage_file.py b/aspose_barcode_cloud/models/storage_file.py index 12fed57..f940463 100644 --- a/aspose_barcode_cloud/models/storage_file.py +++ b/aspose_barcode_cloud/models/storage_file.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/structured_append.py b/aspose_barcode_cloud/models/structured_append.py index 387b995..fe54860 100644 --- a/aspose_barcode_cloud/models/structured_append.py +++ b/aspose_barcode_cloud/models/structured_append.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/models/text_alignment.py b/aspose_barcode_cloud/models/text_alignment.py index e440cfb..994e020 100644 --- a/aspose_barcode_cloud/models/text_alignment.py +++ b/aspose_barcode_cloud/models/text_alignment.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/aspose_barcode_cloud/rest.py b/aspose_barcode_cloud/rest.py index e402162..e892e03 100644 --- a/aspose_barcode_cloud/rest.py +++ b/aspose_barcode_cloud/rest.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/docs/BarcodeApi.md b/docs/BarcodeApi.md index 16efca2..6470627 100644 --- a/docs/BarcodeApi.md +++ b/docs/BarcodeApi.md @@ -133,7 +133,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_barcode_recognize** -> BarcodeResponseList get_barcode_recognize(name, type=type, checksum_validation=checksum_validation, detect_encoding=detect_encoding, preset=preset, rect_x=rect_x, rect_y=rect_y, rect_width=rect_width, rect_height=rect_height, strip_fnc=strip_fnc, timeout=timeout, median_smoothing_window_size=median_smoothing_window_size, allow_median_smoothing=allow_median_smoothing, allow_complex_background=allow_complex_background, allow_datamatrix_industrial_barcodes=allow_datamatrix_industrial_barcodes, allow_decreased_image=allow_decreased_image, allow_detect_scan_gap=allow_detect_scan_gap, allow_incorrect_barcodes=allow_incorrect_barcodes, allow_invert_image=allow_invert_image, allow_micro_white_spots_removing=allow_micro_white_spots_removing, allow_one_d_fast_barcodes_detector=allow_one_d_fast_barcodes_detector, allow_one_d_wiped_bars_restoration=allow_one_d_wiped_bars_restoration, allow_qr_micro_qr_restoration=allow_qr_micro_qr_restoration, allow_regular_image=allow_regular_image, allow_salt_and_pepper_filtering=allow_salt_and_pepper_filtering, allow_white_spots_removing=allow_white_spots_removing, check_more1_d_variants=check_more1_d_variants, fast_scan_only=fast_scan_only, allow_additional_restorations=allow_additional_restorations, region_likelihood_threshold_percent=region_likelihood_threshold_percent, scan_window_sizes=scan_window_sizes, similarity=similarity, skip_diagonal_search=skip_diagonal_search, read_tiny_barcodes=read_tiny_barcodes, australian_post_encoding_table=australian_post_encoding_table, ignore_ending_filling_patterns_for_c_table=ignore_ending_filling_patterns_for_c_table, storage=storage, folder=folder) +> BarcodeResponseList get_barcode_recognize(name, type=type, types=types, checksum_validation=checksum_validation, detect_encoding=detect_encoding, preset=preset, rect_x=rect_x, rect_y=rect_y, rect_width=rect_width, rect_height=rect_height, strip_fnc=strip_fnc, timeout=timeout, median_smoothing_window_size=median_smoothing_window_size, allow_median_smoothing=allow_median_smoothing, allow_complex_background=allow_complex_background, allow_datamatrix_industrial_barcodes=allow_datamatrix_industrial_barcodes, allow_decreased_image=allow_decreased_image, allow_detect_scan_gap=allow_detect_scan_gap, allow_incorrect_barcodes=allow_incorrect_barcodes, allow_invert_image=allow_invert_image, allow_micro_white_spots_removing=allow_micro_white_spots_removing, allow_one_d_fast_barcodes_detector=allow_one_d_fast_barcodes_detector, allow_one_d_wiped_bars_restoration=allow_one_d_wiped_bars_restoration, allow_qr_micro_qr_restoration=allow_qr_micro_qr_restoration, allow_regular_image=allow_regular_image, allow_salt_and_pepper_filtering=allow_salt_and_pepper_filtering, allow_white_spots_removing=allow_white_spots_removing, check_more1_d_variants=check_more1_d_variants, fast_scan_only=fast_scan_only, allow_additional_restorations=allow_additional_restorations, region_likelihood_threshold_percent=region_likelihood_threshold_percent, scan_window_sizes=scan_window_sizes, similarity=similarity, skip_diagonal_search=skip_diagonal_search, read_tiny_barcodes=read_tiny_barcodes, australian_post_encoding_table=australian_post_encoding_table, ignore_ending_filling_patterns_for_c_table=ignore_ending_filling_patterns_for_c_table, storage=storage, folder=folder) Recognize barcode from a file on server. @@ -152,6 +152,7 @@ configuration = aspose_barcode_cloud.Configuration(access_token="YOUR_ACCESS_TOK api_instance = aspose_barcode_cloud.BarcodeApi(aspose_barcode_cloud.ApiClient(configuration)) name = 'name_example' # str | The image file name. type = 'type_example' # str | The type of barcode to read. (optional) +types = [aspose_barcode_cloud.DecodeBarcodeType()] # list[DecodeBarcodeType] | Multiple barcode types to read. (optional) checksum_validation = 'checksum_validation_example' # str | 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 (optional) detect_encoding = True # bool | A flag which force engine to detect codetext encoding for Unicode. (optional) preset = 'preset_example' # str | 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. (optional) @@ -191,7 +192,7 @@ folder = 'folder_example' # str | The image folder. (optional) try: # Recognize barcode from a file on server. - api_response = api_instance.get_barcode_recognize(name, type=type, checksum_validation=checksum_validation, detect_encoding=detect_encoding, preset=preset, rect_x=rect_x, rect_y=rect_y, rect_width=rect_width, rect_height=rect_height, strip_fnc=strip_fnc, timeout=timeout, median_smoothing_window_size=median_smoothing_window_size, allow_median_smoothing=allow_median_smoothing, allow_complex_background=allow_complex_background, allow_datamatrix_industrial_barcodes=allow_datamatrix_industrial_barcodes, allow_decreased_image=allow_decreased_image, allow_detect_scan_gap=allow_detect_scan_gap, allow_incorrect_barcodes=allow_incorrect_barcodes, allow_invert_image=allow_invert_image, allow_micro_white_spots_removing=allow_micro_white_spots_removing, allow_one_d_fast_barcodes_detector=allow_one_d_fast_barcodes_detector, allow_one_d_wiped_bars_restoration=allow_one_d_wiped_bars_restoration, allow_qr_micro_qr_restoration=allow_qr_micro_qr_restoration, allow_regular_image=allow_regular_image, allow_salt_and_pepper_filtering=allow_salt_and_pepper_filtering, allow_white_spots_removing=allow_white_spots_removing, check_more1_d_variants=check_more1_d_variants, fast_scan_only=fast_scan_only, allow_additional_restorations=allow_additional_restorations, region_likelihood_threshold_percent=region_likelihood_threshold_percent, scan_window_sizes=scan_window_sizes, similarity=similarity, skip_diagonal_search=skip_diagonal_search, read_tiny_barcodes=read_tiny_barcodes, australian_post_encoding_table=australian_post_encoding_table, ignore_ending_filling_patterns_for_c_table=ignore_ending_filling_patterns_for_c_table, storage=storage, folder=folder) + api_response = api_instance.get_barcode_recognize(name, type=type, types=types, checksum_validation=checksum_validation, detect_encoding=detect_encoding, preset=preset, rect_x=rect_x, rect_y=rect_y, rect_width=rect_width, rect_height=rect_height, strip_fnc=strip_fnc, timeout=timeout, median_smoothing_window_size=median_smoothing_window_size, allow_median_smoothing=allow_median_smoothing, allow_complex_background=allow_complex_background, allow_datamatrix_industrial_barcodes=allow_datamatrix_industrial_barcodes, allow_decreased_image=allow_decreased_image, allow_detect_scan_gap=allow_detect_scan_gap, allow_incorrect_barcodes=allow_incorrect_barcodes, allow_invert_image=allow_invert_image, allow_micro_white_spots_removing=allow_micro_white_spots_removing, allow_one_d_fast_barcodes_detector=allow_one_d_fast_barcodes_detector, allow_one_d_wiped_bars_restoration=allow_one_d_wiped_bars_restoration, allow_qr_micro_qr_restoration=allow_qr_micro_qr_restoration, allow_regular_image=allow_regular_image, allow_salt_and_pepper_filtering=allow_salt_and_pepper_filtering, allow_white_spots_removing=allow_white_spots_removing, check_more1_d_variants=check_more1_d_variants, fast_scan_only=fast_scan_only, allow_additional_restorations=allow_additional_restorations, region_likelihood_threshold_percent=region_likelihood_threshold_percent, scan_window_sizes=scan_window_sizes, similarity=similarity, skip_diagonal_search=skip_diagonal_search, read_tiny_barcodes=read_tiny_barcodes, australian_post_encoding_table=australian_post_encoding_table, ignore_ending_filling_patterns_for_c_table=ignore_ending_filling_patterns_for_c_table, storage=storage, folder=folder) pprint(api_response) except ApiException as e: print("Exception when calling BarcodeApi->get_barcode_recognize: %s\n" % e) @@ -203,6 +204,7 @@ Name | Type | Description | Notes ---- | ---- | ------------ | ----- **name** | **str**| The image file name. | **type** | **str**| The type of barcode to read. | [optional] + **types** | [**list[DecodeBarcodeType]**](DecodeBarcodeType.md)| Multiple barcode types to read. | [optional] **checksum_validation** | **str**| 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 | [optional] **detect_encoding** | **bool**| A flag which force engine to detect codetext encoding for Unicode. | [optional] **preset** | **str**| 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. | [optional] @@ -256,7 +258,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **post_barcode_recognize_from_url_or_content** -> BarcodeResponseList post_barcode_recognize_from_url_or_content(type=type, checksum_validation=checksum_validation, detect_encoding=detect_encoding, preset=preset, rect_x=rect_x, rect_y=rect_y, rect_width=rect_width, rect_height=rect_height, strip_fnc=strip_fnc, timeout=timeout, median_smoothing_window_size=median_smoothing_window_size, allow_median_smoothing=allow_median_smoothing, allow_complex_background=allow_complex_background, allow_datamatrix_industrial_barcodes=allow_datamatrix_industrial_barcodes, allow_decreased_image=allow_decreased_image, allow_detect_scan_gap=allow_detect_scan_gap, allow_incorrect_barcodes=allow_incorrect_barcodes, allow_invert_image=allow_invert_image, allow_micro_white_spots_removing=allow_micro_white_spots_removing, allow_one_d_fast_barcodes_detector=allow_one_d_fast_barcodes_detector, allow_one_d_wiped_bars_restoration=allow_one_d_wiped_bars_restoration, allow_qr_micro_qr_restoration=allow_qr_micro_qr_restoration, allow_regular_image=allow_regular_image, allow_salt_and_pepper_filtering=allow_salt_and_pepper_filtering, allow_white_spots_removing=allow_white_spots_removing, check_more1_d_variants=check_more1_d_variants, fast_scan_only=fast_scan_only, allow_additional_restorations=allow_additional_restorations, region_likelihood_threshold_percent=region_likelihood_threshold_percent, scan_window_sizes=scan_window_sizes, similarity=similarity, skip_diagonal_search=skip_diagonal_search, read_tiny_barcodes=read_tiny_barcodes, australian_post_encoding_table=australian_post_encoding_table, ignore_ending_filling_patterns_for_c_table=ignore_ending_filling_patterns_for_c_table, url=url, image=image) +> BarcodeResponseList post_barcode_recognize_from_url_or_content(type=type, types=types, checksum_validation=checksum_validation, detect_encoding=detect_encoding, preset=preset, rect_x=rect_x, rect_y=rect_y, rect_width=rect_width, rect_height=rect_height, strip_fnc=strip_fnc, timeout=timeout, median_smoothing_window_size=median_smoothing_window_size, allow_median_smoothing=allow_median_smoothing, allow_complex_background=allow_complex_background, allow_datamatrix_industrial_barcodes=allow_datamatrix_industrial_barcodes, allow_decreased_image=allow_decreased_image, allow_detect_scan_gap=allow_detect_scan_gap, allow_incorrect_barcodes=allow_incorrect_barcodes, allow_invert_image=allow_invert_image, allow_micro_white_spots_removing=allow_micro_white_spots_removing, allow_one_d_fast_barcodes_detector=allow_one_d_fast_barcodes_detector, allow_one_d_wiped_bars_restoration=allow_one_d_wiped_bars_restoration, allow_qr_micro_qr_restoration=allow_qr_micro_qr_restoration, allow_regular_image=allow_regular_image, allow_salt_and_pepper_filtering=allow_salt_and_pepper_filtering, allow_white_spots_removing=allow_white_spots_removing, check_more1_d_variants=check_more1_d_variants, fast_scan_only=fast_scan_only, allow_additional_restorations=allow_additional_restorations, region_likelihood_threshold_percent=region_likelihood_threshold_percent, scan_window_sizes=scan_window_sizes, similarity=similarity, skip_diagonal_search=skip_diagonal_search, read_tiny_barcodes=read_tiny_barcodes, australian_post_encoding_table=australian_post_encoding_table, ignore_ending_filling_patterns_for_c_table=ignore_ending_filling_patterns_for_c_table, url=url, image=image) Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image with content-type \"application/octet-stream\". An image can also be passed as a form field. @@ -274,6 +276,7 @@ configuration = aspose_barcode_cloud.Configuration(access_token="YOUR_ACCESS_TOK # create an instance of the API class api_instance = aspose_barcode_cloud.BarcodeApi(aspose_barcode_cloud.ApiClient(configuration)) type = 'type_example' # str | The type of barcode to read. (optional) +types = [aspose_barcode_cloud.DecodeBarcodeType()] # list[DecodeBarcodeType] | Multiple barcode types to read. (optional) checksum_validation = 'checksum_validation_example' # str | 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 (optional) detect_encoding = True # bool | A flag which force engine to detect codetext encoding for Unicode. (optional) preset = 'preset_example' # str | 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. (optional) @@ -313,7 +316,7 @@ image = '/path/to/file.txt' # file | Image data (optional) try: # Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image with content-type \"application/octet-stream\". An image can also be passed as a form field. - api_response = api_instance.post_barcode_recognize_from_url_or_content(type=type, checksum_validation=checksum_validation, detect_encoding=detect_encoding, preset=preset, rect_x=rect_x, rect_y=rect_y, rect_width=rect_width, rect_height=rect_height, strip_fnc=strip_fnc, timeout=timeout, median_smoothing_window_size=median_smoothing_window_size, allow_median_smoothing=allow_median_smoothing, allow_complex_background=allow_complex_background, allow_datamatrix_industrial_barcodes=allow_datamatrix_industrial_barcodes, allow_decreased_image=allow_decreased_image, allow_detect_scan_gap=allow_detect_scan_gap, allow_incorrect_barcodes=allow_incorrect_barcodes, allow_invert_image=allow_invert_image, allow_micro_white_spots_removing=allow_micro_white_spots_removing, allow_one_d_fast_barcodes_detector=allow_one_d_fast_barcodes_detector, allow_one_d_wiped_bars_restoration=allow_one_d_wiped_bars_restoration, allow_qr_micro_qr_restoration=allow_qr_micro_qr_restoration, allow_regular_image=allow_regular_image, allow_salt_and_pepper_filtering=allow_salt_and_pepper_filtering, allow_white_spots_removing=allow_white_spots_removing, check_more1_d_variants=check_more1_d_variants, fast_scan_only=fast_scan_only, allow_additional_restorations=allow_additional_restorations, region_likelihood_threshold_percent=region_likelihood_threshold_percent, scan_window_sizes=scan_window_sizes, similarity=similarity, skip_diagonal_search=skip_diagonal_search, read_tiny_barcodes=read_tiny_barcodes, australian_post_encoding_table=australian_post_encoding_table, ignore_ending_filling_patterns_for_c_table=ignore_ending_filling_patterns_for_c_table, url=url, image=image) + api_response = api_instance.post_barcode_recognize_from_url_or_content(type=type, types=types, checksum_validation=checksum_validation, detect_encoding=detect_encoding, preset=preset, rect_x=rect_x, rect_y=rect_y, rect_width=rect_width, rect_height=rect_height, strip_fnc=strip_fnc, timeout=timeout, median_smoothing_window_size=median_smoothing_window_size, allow_median_smoothing=allow_median_smoothing, allow_complex_background=allow_complex_background, allow_datamatrix_industrial_barcodes=allow_datamatrix_industrial_barcodes, allow_decreased_image=allow_decreased_image, allow_detect_scan_gap=allow_detect_scan_gap, allow_incorrect_barcodes=allow_incorrect_barcodes, allow_invert_image=allow_invert_image, allow_micro_white_spots_removing=allow_micro_white_spots_removing, allow_one_d_fast_barcodes_detector=allow_one_d_fast_barcodes_detector, allow_one_d_wiped_bars_restoration=allow_one_d_wiped_bars_restoration, allow_qr_micro_qr_restoration=allow_qr_micro_qr_restoration, allow_regular_image=allow_regular_image, allow_salt_and_pepper_filtering=allow_salt_and_pepper_filtering, allow_white_spots_removing=allow_white_spots_removing, check_more1_d_variants=check_more1_d_variants, fast_scan_only=fast_scan_only, allow_additional_restorations=allow_additional_restorations, region_likelihood_threshold_percent=region_likelihood_threshold_percent, scan_window_sizes=scan_window_sizes, similarity=similarity, skip_diagonal_search=skip_diagonal_search, read_tiny_barcodes=read_tiny_barcodes, australian_post_encoding_table=australian_post_encoding_table, ignore_ending_filling_patterns_for_c_table=ignore_ending_filling_patterns_for_c_table, url=url, image=image) pprint(api_response) except ApiException as e: print("Exception when calling BarcodeApi->post_barcode_recognize_from_url_or_content: %s\n" % e) @@ -324,6 +327,7 @@ except ApiException as e: Name | Type | Description | Notes ---- | ---- | ------------ | ----- **type** | **str**| The type of barcode to read. | [optional] + **types** | [**list[DecodeBarcodeType]**](DecodeBarcodeType.md)| Multiple barcode types to read. | [optional] **checksum_validation** | **str**| 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 | [optional] **detect_encoding** | **bool**| A flag which force engine to detect codetext encoding for Unicode. | [optional] **preset** | **str**| 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. | [optional] diff --git a/docs/DecodeBarcodeType.md b/docs/DecodeBarcodeType.md index 08af5d5..859d322 100644 --- a/docs/DecodeBarcodeType.md +++ b/docs/DecodeBarcodeType.md @@ -87,5 +87,6 @@ See DecodeType * DecodeBarcodeType.GS1AZTEC * DecodeBarcodeType.GS1COMPOSITEBAR * DecodeBarcodeType.GS1MICROPDF417 +* DecodeBarcodeType.MOSTCOMMONLYUSED [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/docs/ReaderParams.md b/docs/ReaderParams.md index 976cd56..0c1c149 100644 --- a/docs/ReaderParams.md +++ b/docs/ReaderParams.md @@ -7,6 +7,7 @@ Represents BarcodeReader object. Name | Type | Description | Notes ---- | ---- | ----------- | ----- **type** | [**DecodeBarcodeType**](DecodeBarcodeType.md) | The type of barcode to read. | [optional] +**types** | [**list[DecodeBarcodeType]**](DecodeBarcodeType.md) | Multiple barcode types to read. | [optional] **checksum_validation** | [**ChecksumValidation**](ChecksumValidation.md) | 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 | [optional] **detect_encoding** | **bool** | A flag which force engine to detect codetext encoding for Unicode. | [optional] **preset** | [**PresetType**](PresetType.md) | 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. | [optional] diff --git a/setup.py b/setup.py index 853fb63..30960e3 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ """ - Copyright (c) 2023 Aspose.BarCode for Cloud + Copyright (c) 2024 Aspose.BarCode for Cloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -29,7 +29,7 @@ from setuptools import setup, find_packages NAME = "aspose-barcode-cloud" -VERSION = "23.12.0" +VERSION = "24.1.0" # To install the library, run the following # # python setup.py install