You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,11 @@ Python Cloud SDK wraps Aspose.Words Cloud API so you could seamlessly integrate
16
16
-[Convert a document to desired file format](https://docs.aspose.cloud/display/wordscloud/Convert+Document+to+Destination+Format+with+Detailed+Settings+and+Save+Result+to+Storage) along with detailed settings.
17
17
- Convert an encrypted PDF document into Word document format.
18
18
19
+
## Enhancements in Version 22.8
20
+
21
+
- Added optional loadEncoding and password parameters for ConvertDocument API method.
22
+
23
+
19
24
## Enhancements in Version 22.7
20
25
21
26
- Expand 'AppendDocument' API method to support 'ImageEntryList' for directly appending images to documents and another images.
:param out_path str : The path to the output document on a local storage.
1281
1281
:param file_name_field_value str : The filename of the output document, that will be used when the resulting document has a dynamic field {filename}. If it is not set, the "sourceFilename" will be used instead.
1282
1282
:param storage str : Original document storage.
1283
+
:param load_encoding str : Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
1284
+
:param password str : Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
1285
+
:param encrypted_password str : Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
1283
1286
:param fonts_location str : Folder in filestorage with custom fonts.
Copy file name to clipboardExpand all lines: asposewordscloud/models/requests/convert_document_request.py
+13-1Lines changed: 13 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -40,15 +40,21 @@ class ConvertDocumentRequest(BaseRequestObject):
40
40
:param out_path The path to the output document on a local storage.
41
41
:param file_name_field_value The filename of the output document, that will be used when the resulting document has a dynamic field {filename}. If it is not set, the "sourceFilename" will be used instead.
42
42
:param storage Original document storage.
43
+
:param load_encoding Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
44
+
:param password Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
45
+
:param encrypted_password Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
43
46
:param fonts_location Folder in filestorage with custom fonts.
44
47
"""
45
48
46
-
def__init__(self, document, format, out_path=None, file_name_field_value=None, storage=None, fonts_location=None):
49
+
def__init__(self, document, format, out_path=None, file_name_field_value=None, storage=None, load_encoding=None, password=None, encrypted_password=None, fonts_location=None):
0 commit comments