Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Aspose.PDF Cloud
- API version: 3.0
- Package version: 20.5.0
- Package version: 20.6.0

[Aspose.PDF Cloud](https://products.aspose.cloud/pdf) is a true REST API that enables you to perform a wide range of document processing operations including creation, manipulation, conversion and rendering of Pdf documents in the cloud.

Expand Down Expand Up @@ -527,6 +527,7 @@ Class | Method | HTTP request | Description
- [ObjectExist](docs/ObjectExist.md)
- [OptimizeOptions](docs/OptimizeOptions.md)
- [Option](docs/Option.md)
- [OutputFormat](docs/OutputFormat.md)
- [PageLayout](docs/PageLayout.md)
- [PageMode](docs/PageMode.md)
- [PageWordCount](docs/PageWordCount.md)
Expand Down
1 change: 1 addition & 0 deletions asposepdfcloud/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@
from .models.object_exist import ObjectExist
from .models.optimize_options import OptimizeOptions
from .models.option import Option
from .models.output_format import OutputFormat
from .models.page_layout import PageLayout
from .models.page_mode import PageMode
from .models.page_word_count import PageWordCount
Expand Down
2 changes: 1 addition & 1 deletion asposepdfcloud/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def __init__(self, app_key, app_sid, host=None):
self.rest_client = RESTClientObject()
self.default_headers = {}
self.default_headers['x-aspose-client'] = 'python sdk'
self.default_headers['x-aspose-client-version'] = '20.5.0'
self.default_headers['x-aspose-client-version'] = '20.6.0'

self.app_key = app_key
self.app_sid = app_sid
Expand Down
12 changes: 10 additions & 2 deletions asposepdfcloud/apis/pdf_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -36396,6 +36396,7 @@ def put_pdf_in_request_to_html(self, out_path, **kwargs):
:param bool try_save_text_underlining_and_strikeouting_in_css: PDF itself does not contain underlining markers for texts. It emulated with line situated under text. This option allows converter try guess that this or that line is a text's underlining and put this info into CSS instead of drawing of underlining graphically.
:param str storage: The document storage.
:param bool flow_layout_paragraph_full_width: This attribute specifies full width paragraph text for Flow mode, FixedLayout = false.
:param str output_format: This parameter determines the type of result. The zip archive will be uploaded into the storage if the parameter is \"Zip\" or missed (default). In case of the \"Folder\", all resulting files and directories will be uploaded to the folder of the resulting HTML file.
:param file file: A file to be converted.
:return: AsposeResponse
If the method is called asynchronously,
Expand Down Expand Up @@ -36452,13 +36453,14 @@ def put_pdf_in_request_to_html_with_http_info(self, out_path, **kwargs):
:param bool try_save_text_underlining_and_strikeouting_in_css: PDF itself does not contain underlining markers for texts. It emulated with line situated under text. This option allows converter try guess that this or that line is a text's underlining and put this info into CSS instead of drawing of underlining graphically.
:param str storage: The document storage.
:param bool flow_layout_paragraph_full_width: This attribute specifies full width paragraph text for Flow mode, FixedLayout = false.
:param str output_format: This parameter determines the type of result. The zip archive will be uploaded into the storage if the parameter is \"Zip\" or missed (default). In case of the \"Folder\", all resulting files and directories will be uploaded to the folder of the resulting HTML file.
:param file file: A file to be converted.
:return: AsposeResponse
If the method is called asynchronously,
returns the request thread.
"""

all_params = ['out_path', 'additional_margin_width_in_points', 'compress_svg_graphics_if_any', 'convert_marked_content_to_layers', 'default_font_name', 'document_type', 'fixed_layout', 'image_resolution', 'minimal_line_width', 'prevent_glyphs_grouping', 'split_css_into_pages', 'split_into_pages', 'use_z_order', 'antialiasing_processing', 'css_class_names_prefix', 'explicit_list_of_saved_pages', 'font_encoding_strategy', 'font_saving_mode', 'html_markup_generation_mode', 'letters_positioning_method', 'pages_flow_type_depends_on_viewers_screen_size', 'parts_embedding_mode', 'raster_images_saving_mode', 'remove_empty_areas_on_top_and_bottom', 'save_shadowed_texts_as_transparent_texts', 'save_transparent_texts', 'special_folder_for_all_images', 'special_folder_for_svg_images', 'try_save_text_underlining_and_strikeouting_in_css', 'storage', 'flow_layout_paragraph_full_width', 'file']
all_params = ['out_path', 'additional_margin_width_in_points', 'compress_svg_graphics_if_any', 'convert_marked_content_to_layers', 'default_font_name', 'document_type', 'fixed_layout', 'image_resolution', 'minimal_line_width', 'prevent_glyphs_grouping', 'split_css_into_pages', 'split_into_pages', 'use_z_order', 'antialiasing_processing', 'css_class_names_prefix', 'explicit_list_of_saved_pages', 'font_encoding_strategy', 'font_saving_mode', 'html_markup_generation_mode', 'letters_positioning_method', 'pages_flow_type_depends_on_viewers_screen_size', 'parts_embedding_mode', 'raster_images_saving_mode', 'remove_empty_areas_on_top_and_bottom', 'save_shadowed_texts_as_transparent_texts', 'save_transparent_texts', 'special_folder_for_all_images', 'special_folder_for_svg_images', 'try_save_text_underlining_and_strikeouting_in_css', 'storage', 'flow_layout_paragraph_full_width', 'output_format', 'file']
all_params.append('callback')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
Expand Down Expand Up @@ -36546,6 +36548,8 @@ def put_pdf_in_request_to_html_with_http_info(self, out_path, **kwargs):
query_params.append(('storage', params['storage']))
if 'flow_layout_paragraph_full_width' in params:
query_params.append(('flowLayoutParagraphFullWidth', params['flow_layout_paragraph_full_width']))
if 'output_format' in params:
query_params.append(('outputFormat', params['output_format']))

header_params = {}

Expand Down Expand Up @@ -38240,6 +38244,7 @@ def put_pdf_in_storage_to_html(self, name, out_path, **kwargs):
:param str folder: The document folder.
:param str storage: The document storage.
:param bool flow_layout_paragraph_full_width: This attribute specifies full width paragraph text for Flow mode, FixedLayout = false.
:param str output_format: This parameter determines the type of result. The zip archive will be uploaded into the storage if the parameter is \"Zip\" or missed (default). In case of the \"Folder\", all resulting files and directories will be uploaded to the folder of the resulting HTML file.
:return: AsposeResponse
If the method is called asynchronously,
returns the request thread.
Expand Down Expand Up @@ -38297,12 +38302,13 @@ def put_pdf_in_storage_to_html_with_http_info(self, name, out_path, **kwargs):
:param str folder: The document folder.
:param str storage: The document storage.
:param bool flow_layout_paragraph_full_width: This attribute specifies full width paragraph text for Flow mode, FixedLayout = false.
:param str output_format: This parameter determines the type of result. The zip archive will be uploaded into the storage if the parameter is \"Zip\" or missed (default). In case of the \"Folder\", all resulting files and directories will be uploaded to the folder of the resulting HTML file.
:return: AsposeResponse
If the method is called asynchronously,
returns the request thread.
"""

all_params = ['name', 'out_path', 'additional_margin_width_in_points', 'compress_svg_graphics_if_any', 'convert_marked_content_to_layers', 'default_font_name', 'document_type', 'fixed_layout', 'image_resolution', 'minimal_line_width', 'prevent_glyphs_grouping', 'split_css_into_pages', 'split_into_pages', 'use_z_order', 'antialiasing_processing', 'css_class_names_prefix', 'explicit_list_of_saved_pages', 'font_encoding_strategy', 'font_saving_mode', 'html_markup_generation_mode', 'letters_positioning_method', 'pages_flow_type_depends_on_viewers_screen_size', 'parts_embedding_mode', 'raster_images_saving_mode', 'remove_empty_areas_on_top_and_bottom', 'save_shadowed_texts_as_transparent_texts', 'save_transparent_texts', 'special_folder_for_all_images', 'special_folder_for_svg_images', 'try_save_text_underlining_and_strikeouting_in_css', 'folder', 'storage', 'flow_layout_paragraph_full_width']
all_params = ['name', 'out_path', 'additional_margin_width_in_points', 'compress_svg_graphics_if_any', 'convert_marked_content_to_layers', 'default_font_name', 'document_type', 'fixed_layout', 'image_resolution', 'minimal_line_width', 'prevent_glyphs_grouping', 'split_css_into_pages', 'split_into_pages', 'use_z_order', 'antialiasing_processing', 'css_class_names_prefix', 'explicit_list_of_saved_pages', 'font_encoding_strategy', 'font_saving_mode', 'html_markup_generation_mode', 'letters_positioning_method', 'pages_flow_type_depends_on_viewers_screen_size', 'parts_embedding_mode', 'raster_images_saving_mode', 'remove_empty_areas_on_top_and_bottom', 'save_shadowed_texts_as_transparent_texts', 'save_transparent_texts', 'special_folder_for_all_images', 'special_folder_for_svg_images', 'try_save_text_underlining_and_strikeouting_in_css', 'folder', 'storage', 'flow_layout_paragraph_full_width', 'output_format']
all_params.append('callback')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
Expand Down Expand Up @@ -38397,6 +38403,8 @@ def put_pdf_in_storage_to_html_with_http_info(self, name, out_path, **kwargs):
query_params.append(('storage', params['storage']))
if 'flow_layout_paragraph_full_width' in params:
query_params.append(('flowLayoutParagraphFullWidth', params['flow_layout_paragraph_full_width']))
if 'output_format' in params:
query_params.append(('outputFormat', params['output_format']))

header_params = {}

Expand Down
2 changes: 1 addition & 1 deletion asposepdfcloud/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,5 +199,5 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: 3.0\n"\
"SDK Package Version: 20.5.0".\
"SDK Package Version: 20.6.0".\
format(env=sys.platform, pyversion=sys.version)
1 change: 1 addition & 0 deletions asposepdfcloud/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@
from .object_exist import ObjectExist
from .optimize_options import OptimizeOptions
from .option import Option
from .output_format import OutputFormat
from .page_layout import PageLayout
from .page_mode import PageMode
from .page_word_count import PageWordCount
Expand Down
30 changes: 29 additions & 1 deletion asposepdfcloud/models/check_box_field.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ class CheckBoxField(object):
swagger_types = {
'links': 'list[Link]',
'partial_name': 'str',
'full_name': 'str',
'rect': 'Rectangle',
'value': 'str',
'page_index': 'int',
Expand Down Expand Up @@ -77,6 +78,7 @@ class CheckBoxField(object):
attribute_map = {
'links': 'Links',
'partial_name': 'PartialName',
'full_name': 'FullName',
'rect': 'Rect',
'value': 'Value',
'page_index': 'PageIndex',
Expand All @@ -101,13 +103,14 @@ class CheckBoxField(object):
'export_value': 'ExportValue'
}

def __init__(self, links=None, partial_name=None, rect=None, value=None, page_index=None, height=None, width=None, z_index=None, is_group=None, parent=None, is_shared_field=None, flags=None, color=None, contents=None, margin=None, highlighting=None, horizontal_alignment=None, vertical_alignment=None, border=None, allowed_states=None, style=None, active_state=None, checked=None, export_value=None):
def __init__(self, links=None, partial_name=None, full_name=None, rect=None, value=None, page_index=None, height=None, width=None, z_index=None, is_group=None, parent=None, is_shared_field=None, flags=None, color=None, contents=None, margin=None, highlighting=None, horizontal_alignment=None, vertical_alignment=None, border=None, allowed_states=None, style=None, active_state=None, checked=None, export_value=None):
"""
CheckBoxField - a model defined in Swagger
"""

self._links = None
self._partial_name = None
self._full_name = None
self._rect = None
self._value = None
self._page_index = None
Expand Down Expand Up @@ -135,6 +138,8 @@ def __init__(self, links=None, partial_name=None, rect=None, value=None, page_in
self.links = links
if partial_name is not None:
self.partial_name = partial_name
if full_name is not None:
self.full_name = full_name
if rect is not None:
self.rect = rect
if value is not None:
Expand Down Expand Up @@ -224,6 +229,29 @@ def partial_name(self, partial_name):

self._partial_name = partial_name

@property
def full_name(self):
"""
Gets the full_name of this CheckBoxField.
Full Field name.

:return: The full_name of this CheckBoxField.
:rtype: str
"""
return self._full_name

@full_name.setter
def full_name(self, full_name):
"""
Sets the full_name of this CheckBoxField.
Full Field name.

:param full_name: The full_name of this CheckBoxField.
:type: str
"""

self._full_name = full_name

@property
def rect(self):
"""
Expand Down
30 changes: 29 additions & 1 deletion asposepdfcloud/models/choice_field.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ class ChoiceField(object):
swagger_types = {
'links': 'list[Link]',
'partial_name': 'str',
'full_name': 'str',
'rect': 'Rectangle',
'value': 'str',
'page_index': 'int',
Expand All @@ -74,6 +75,7 @@ class ChoiceField(object):
attribute_map = {
'links': 'Links',
'partial_name': 'PartialName',
'full_name': 'FullName',
'rect': 'Rect',
'value': 'Value',
'page_index': 'PageIndex',
Expand All @@ -95,13 +97,14 @@ class ChoiceField(object):
'selected': 'Selected'
}

def __init__(self, links=None, partial_name=None, rect=None, value=None, page_index=None, height=None, width=None, z_index=None, is_group=None, parent=None, is_shared_field=None, flags=None, color=None, contents=None, margin=None, highlighting=None, horizontal_alignment=None, vertical_alignment=None, border=None, multi_select=None, selected=None):
def __init__(self, links=None, partial_name=None, full_name=None, rect=None, value=None, page_index=None, height=None, width=None, z_index=None, is_group=None, parent=None, is_shared_field=None, flags=None, color=None, contents=None, margin=None, highlighting=None, horizontal_alignment=None, vertical_alignment=None, border=None, multi_select=None, selected=None):
"""
ChoiceField - a model defined in Swagger
"""

self._links = None
self._partial_name = None
self._full_name = None
self._rect = None
self._value = None
self._page_index = None
Expand All @@ -126,6 +129,8 @@ def __init__(self, links=None, partial_name=None, rect=None, value=None, page_in
self.links = links
if partial_name is not None:
self.partial_name = partial_name
if full_name is not None:
self.full_name = full_name
if rect is not None:
self.rect = rect
if value is not None:
Expand Down Expand Up @@ -210,6 +215,29 @@ def partial_name(self, partial_name):

self._partial_name = partial_name

@property
def full_name(self):
"""
Gets the full_name of this ChoiceField.
Full Field name.

:return: The full_name of this ChoiceField.
:rtype: str
"""
return self._full_name

@full_name.setter
def full_name(self, full_name):
"""
Sets the full_name of this ChoiceField.
Full Field name.

:param full_name: The full_name of this ChoiceField.
:type: str
"""

self._full_name = full_name

@property
def rect(self):
"""
Expand Down
30 changes: 29 additions & 1 deletion asposepdfcloud/models/combo_box_field.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ class ComboBoxField(object):
swagger_types = {
'links': 'list[Link]',
'partial_name': 'str',
'full_name': 'str',
'rect': 'Rectangle',
'value': 'str',
'page_index': 'int',
Expand Down Expand Up @@ -78,6 +79,7 @@ class ComboBoxField(object):
attribute_map = {
'links': 'Links',
'partial_name': 'PartialName',
'full_name': 'FullName',
'rect': 'Rect',
'value': 'Value',
'page_index': 'PageIndex',
Expand All @@ -103,13 +105,14 @@ class ComboBoxField(object):
'spell_check': 'SpellCheck'
}

def __init__(self, links=None, partial_name=None, rect=None, value=None, page_index=None, height=None, width=None, z_index=None, is_group=None, parent=None, is_shared_field=None, flags=None, color=None, contents=None, margin=None, highlighting=None, horizontal_alignment=None, vertical_alignment=None, border=None, multi_select=None, selected=None, options=None, active_state=None, editable=None, spell_check=None):
def __init__(self, links=None, partial_name=None, full_name=None, rect=None, value=None, page_index=None, height=None, width=None, z_index=None, is_group=None, parent=None, is_shared_field=None, flags=None, color=None, contents=None, margin=None, highlighting=None, horizontal_alignment=None, vertical_alignment=None, border=None, multi_select=None, selected=None, options=None, active_state=None, editable=None, spell_check=None):
"""
ComboBoxField - a model defined in Swagger
"""

self._links = None
self._partial_name = None
self._full_name = None
self._rect = None
self._value = None
self._page_index = None
Expand Down Expand Up @@ -138,6 +141,8 @@ def __init__(self, links=None, partial_name=None, rect=None, value=None, page_in
self.links = links
if partial_name is not None:
self.partial_name = partial_name
if full_name is not None:
self.full_name = full_name
if rect is not None:
self.rect = rect
if value is not None:
Expand Down Expand Up @@ -230,6 +235,29 @@ def partial_name(self, partial_name):

self._partial_name = partial_name

@property
def full_name(self):
"""
Gets the full_name of this ComboBoxField.
Full Field name.

:return: The full_name of this ComboBoxField.
:rtype: str
"""
return self._full_name

@full_name.setter
def full_name(self, full_name):
"""
Sets the full_name of this ComboBoxField.
Full Field name.

:param full_name: The full_name of this ComboBoxField.
:type: str
"""

self._full_name = full_name

@property
def rect(self):
"""
Expand Down
Loading