@@ -203,6 +203,7 @@ Method | HTTP request | Description
203
203
[ ** postChangePasswordDocumentInStorage** ] ( PdfApi.md#postChangePasswordDocumentInStorage ) | ** POST** /pdf/\{ name}/changepassword | Change document password in storage.
204
204
[ ** postCheckBoxFields** ] ( PdfApi.md#postCheckBoxFields ) | ** POST** /pdf/\{ name}/fields/checkbox | Add document checkbox fields.
205
205
[ ** postComboBoxFields** ] ( PdfApi.md#postComboBoxFields ) | ** POST** /pdf/\{ name}/fields/combobox | Add document combobox fields.
206
+ [ ** postComparePdf** ] ( PdfApi.md#postComparePdf ) | ** POST** /pdf/compare | Compare two PDF documents.
206
207
[ ** postCreateDocument** ] ( PdfApi.md#postCreateDocument ) | ** POST** /pdf/\{ name} | Create empty document.
207
208
[ ** postCreateField** ] ( PdfApi.md#postCreateField ) | ** POST** /pdf/\{ name}/fields | Create field.
208
209
[ ** postDecryptDocumentInStorage** ] ( PdfApi.md#postDecryptDocumentInStorage ) | ** POST** /pdf/\{ name}/decrypt | Decrypt document in storage.
@@ -2755,7 +2756,7 @@ Name | Type | Description | Notes
2755
2756
2756
2757
<a name =" getMhtInStorageToPdf " ></a >
2757
2758
# ** getMhtInStorageToPdf**
2758
- > File getMhtInStorageToPdf(srcPath, storage)
2759
+ > File getMhtInStorageToPdf(srcPath, height, width, marginLeft, marginBottom, marginRight, marginTop, storage)
2759
2760
2760
2761
Convert MHT file (located on storage) to PDF format and return resulting file in response.
2761
2762
@@ -2764,6 +2765,12 @@ Convert MHT file (located on storage) to PDF format and return resulting file in
2764
2765
Name | Type | Description | Notes
2765
2766
------------- | ------------- | ------------- | -------------
2766
2767
** srcPath** | ** String** | Full source filename (ex. /folder1/folder2/template.mht) |
2768
+ ** height** | ** Double** | Page height | [ optional]
2769
+ ** width** | ** Double** | Page width | [ optional]
2770
+ ** marginLeft** | ** Double** | Page margin left | [ optional]
2771
+ ** marginBottom** | ** Double** | Page margin bottom | [ optional]
2772
+ ** marginRight** | ** Double** | Page margin right | [ optional]
2773
+ ** marginTop** | ** Double** | Page margin top | [ optional]
2767
2774
** storage** | ** String** | The document storage. | [ optional]
2768
2775
2769
2776
### Return type
@@ -5214,6 +5221,30 @@ Name | Type | Description | Notes
5214
5221
5215
5222
[ ** AsposeResponse** ] ( AsposeResponse.md )
5216
5223
5224
+ ### HTTP request headers
5225
+
5226
+ - ** Content-Type** : application/json
5227
+ - ** Accept** : application/json
5228
+
5229
+ <a name =" postComparePdf " ></a >
5230
+ # ** postComparePdf**
5231
+ > AsposeResponse postComparePdf(path1, path2, outPath, storage)
5232
+
5233
+ Compare two PDF documents.
5234
+
5235
+ ### Parameters
5236
+
5237
+ Name | Type | Description | Notes
5238
+ ------------- | ------------- | ------------- | -------------
5239
+ ** path1** | ** String** | Path to first PDF document. |
5240
+ ** path2** | ** String** | Path to second PDF document. |
5241
+ ** outPath** | ** String** | Full filename of the resulting document. |
5242
+ ** storage** | ** String** | The documents storage. | [ optional]
5243
+
5244
+ ### Return type
5245
+
5246
+ [ ** AsposeResponse** ] ( AsposeResponse.md )
5247
+
5217
5248
### HTTP request headers
5218
5249
5219
5250
- ** Content-Type** : application/json
@@ -7820,7 +7851,7 @@ Name | Type | Description | Notes
7820
7851
7821
7852
<a name =" putMhtInStorageToPdf " ></a >
7822
7853
# ** putMhtInStorageToPdf**
7823
- > AsposeResponse putMhtInStorageToPdf(name, srcPath, dstFolder, storage)
7854
+ > AsposeResponse putMhtInStorageToPdf(name, srcPath, height, width, marginLeft, marginBottom, marginRight, marginTop, dstFolder, storage)
7824
7855
7825
7856
Convert MHT file (located on storage) to PDF format and upload resulting file to storage.
7826
7857
@@ -7830,6 +7861,12 @@ Name | Type | Description | Notes
7830
7861
------------- | ------------- | ------------- | -------------
7831
7862
** name** | ** String** | The document name. |
7832
7863
** srcPath** | ** String** | Full source filename (ex. /folder1/folder2/template.mht) |
7864
+ ** height** | ** Double** | Page height | [ optional]
7865
+ ** width** | ** Double** | Page width | [ optional]
7866
+ ** marginLeft** | ** Double** | Page margin left | [ optional]
7867
+ ** marginBottom** | ** Double** | Page margin bottom | [ optional]
7868
+ ** marginRight** | ** Double** | Page margin right | [ optional]
7869
+ ** marginTop** | ** Double** | Page margin top | [ optional]
7833
7870
** dstFolder** | ** String** | The destination document folder. | [ optional]
7834
7871
** storage** | ** String** | The document storage. | [ optional]
7835
7872
0 commit comments