aspose_pdf_cloud 22.8.0 → 22.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +16 -6
- data/docs/PageRange.md +10 -0
- data/docs/PdfApi.md +45 -4
- data/docs/SplitRangePdfOptions.md +9 -0
- data/lib/aspose_pdf_cloud/api/pdf_api.rb +126 -4
- data/lib/aspose_pdf_cloud/api_client.rb +7 -11
- data/lib/aspose_pdf_cloud/models/page_range.rb +207 -0
- data/lib/aspose_pdf_cloud/models/split_range_pdf_options.rb +200 -0
- data/lib/aspose_pdf_cloud/version.rb +1 -1
- data/lib/aspose_pdf_cloud.rb +2 -0
- data/test/pdf_tests.rb +19 -2
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ded3f90137c02eb2f66fdb931d2132e5684264f5f3d27b43d42847b79d6956ac
|
4
|
+
data.tar.gz: 7347dfb52a984549e343c238d5a9e4412f2f57ceba838ec419b96e688da8bc76
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: def86ff1a2ae02e293468185ac02569be6e6691290a3a88dd82ae86a47fe5bc73fd3af4269d170057a1c280337b050d362da9e7729b4186bfd614dd313fd644c
|
7
|
+
data.tar.gz: a683849749036e8f406e9b4d378f1c1b0a10297b28797daf82887e5675bddff7e986cd9272cb8b681e0d60c199955c41c6c59f633937563ba8fe836bd640973b
|
data/README.md
CHANGED
@@ -29,9 +29,16 @@ XLS, XLSX, PPTX, DOC, DOCX, MobiXML, JPEG, EMF, PNG, BMP, GIF, TIFF, Text
|
|
29
29
|
## Read PDF Formats
|
30
30
|
MHT, PCL, PS, XSLFO, MD
|
31
31
|
|
32
|
-
## Enhancements in Version 22.
|
32
|
+
## Enhancements in Version 22.10
|
33
|
+
- Convert password protected PDF to DOC.
|
34
|
+
- Support to convert password protected document to graphic formats.
|
35
|
+
- Support to convert pages of password protected PDF to JPEG using GetPageConvertToJpeg.
|
36
|
+
- Add new REST API endpoint to parse PDF document into PDF parts containing specified page ranges.
|
33
37
|
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
|
34
38
|
|
39
|
+
## Bugs fixed in Version 22.10
|
40
|
+
- The PostSplitDocument API method is throwing 504 Gateway Error.
|
41
|
+
|
35
42
|
## Installation
|
36
43
|
|
37
44
|
### Build a gem
|
@@ -45,15 +52,15 @@ gem build aspose_pdf_cloud.gemspec
|
|
45
52
|
Then either install the gem locally:
|
46
53
|
|
47
54
|
```shell
|
48
|
-
gem install ./aspose_pdf_cloud-22.
|
55
|
+
gem install ./aspose_pdf_cloud-22.10.0.gem
|
49
56
|
```
|
50
|
-
(for development, run `gem install --dev ./aspose_pdf_cloud-22.
|
57
|
+
(for development, run `gem install --dev ./aspose_pdf_cloud-22.10.0.gem` to install the development dependencies)
|
51
58
|
|
52
59
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
53
60
|
|
54
61
|
Finally add this to the Gemfile:
|
55
62
|
|
56
|
-
gem 'aspose_pdf_cloud', '~> 22.
|
63
|
+
gem 'aspose_pdf_cloud', '~> 22.10.0'
|
57
64
|
|
58
65
|
### Install from Git
|
59
66
|
|
@@ -234,7 +241,7 @@ Class | Method | HTTP request | Description
|
|
234
241
|
*AsposePdfCloud::PdfApi* | [**get_pages**](docs/PdfApi.md#get_pages) | **GET** /pdf/\{name}/pages | Read document pages info.
|
235
242
|
*AsposePdfCloud::PdfApi* | [**get_pcl_in_storage_to_pdf**](docs/PdfApi.md#get_pcl_in_storage_to_pdf) | **GET** /pdf/create/pcl | Convert PCL file (located on storage) to PDF format and return resulting file in response.
|
236
243
|
*AsposePdfCloud::PdfApi* | [**get_pdf_a_in_storage_to_pdf**](docs/PdfApi.md#get_pdf_a_in_storage_to_pdf) | **GET** /pdf/create/pdfa | Convert PDFA file (located on storage) to PDF format and return resulting file in response.
|
237
|
-
*AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_doc**](docs/PdfApi.md#get_pdf_in_storage_to_doc) | **GET** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and returns resulting file in response content
|
244
|
+
*AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_doc**](docs/PdfApi.md#get_pdf_in_storage_to_doc) | **GET** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and returns resulting file in response content.
|
238
245
|
*AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_epub**](docs/PdfApi.md#get_pdf_in_storage_to_epub) | **GET** /pdf/\{name}/convert/epub | Converts PDF document (located on storage) to EPUB format and returns resulting file in response content
|
239
246
|
*AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_html**](docs/PdfApi.md#get_pdf_in_storage_to_html) | **GET** /pdf/\{name}/convert/html | Converts PDF document (located on storage) to Html format and returns resulting file in response content
|
240
247
|
*AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_mobi_xml**](docs/PdfApi.md#get_pdf_in_storage_to_mobi_xml) | **GET** /pdf/\{name}/convert/mobixml | Converts PDF document (located on storage) to MOBIXML format and returns resulting ZIP archive file in response content.
|
@@ -335,6 +342,7 @@ Class | Method | HTTP request | Description
|
|
335
342
|
*AsposePdfCloud::PdfApi* | [**post_sign_page**](docs/PdfApi.md#post_sign_page) | **POST** /pdf/\{name}/pages/\{pageNumber}/sign | Sign page.
|
336
343
|
*AsposePdfCloud::PdfApi* | [**post_signature_field**](docs/PdfApi.md#post_signature_field) | **POST** /pdf/\{name}/fields/signature | Add document signature field.
|
337
344
|
*AsposePdfCloud::PdfApi* | [**post_split_document**](docs/PdfApi.md#post_split_document) | **POST** /pdf/\{name}/split | Split document to parts.
|
345
|
+
*AsposePdfCloud::PdfApi* | [**post_split_range_pdf_document**](docs/PdfApi.md#post_split_range_pdf_document) | **POST** /pdf/\{name}/splitrangepdf |
|
338
346
|
*AsposePdfCloud::PdfApi* | [**post_text_box_fields**](docs/PdfApi.md#post_text_box_fields) | **POST** /pdf/\{name}/fields/textbox | Add document text box fields.
|
339
347
|
*AsposePdfCloud::PdfApi* | [**put_add_new_page**](docs/PdfApi.md#put_add_new_page) | **PUT** /pdf/\{name}/pages | Add new page to end of the document.
|
340
348
|
*AsposePdfCloud::PdfApi* | [**put_add_text**](docs/PdfApi.md#put_add_text) | **PUT** /pdf/\{name}/pages/\{pageNumber}/text | Add text to PDF document page.
|
@@ -401,7 +409,7 @@ Class | Method | HTTP request | Description
|
|
401
409
|
*AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_xlsx**](docs/PdfApi.md#put_pdf_in_request_to_xlsx) | **PUT** /pdf/convert/xlsx | Converts PDF document (in request content) to XLSX format and uploads resulting file to storage.
|
402
410
|
*AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_xml**](docs/PdfApi.md#put_pdf_in_request_to_xml) | **PUT** /pdf/convert/xml | Converts PDF document (in request content) to XML format and uploads resulting file to storage.
|
403
411
|
*AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_xps**](docs/PdfApi.md#put_pdf_in_request_to_xps) | **PUT** /pdf/convert/xps | Converts PDF document (in request content) to XPS format and uploads resulting file to storage.
|
404
|
-
*AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_doc**](docs/PdfApi.md#put_pdf_in_storage_to_doc) | **PUT** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and uploads resulting file to storage
|
412
|
+
*AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_doc**](docs/PdfApi.md#put_pdf_in_storage_to_doc) | **PUT** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and uploads resulting file to storage.
|
405
413
|
*AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_epub**](docs/PdfApi.md#put_pdf_in_storage_to_epub) | **PUT** /pdf/\{name}/convert/epub | Converts PDF document (located on storage) to EPUB format and uploads resulting file to storage
|
406
414
|
*AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_html**](docs/PdfApi.md#put_pdf_in_storage_to_html) | **PUT** /pdf/\{name}/convert/html | Converts PDF document (located on storage) to Html format and uploads resulting file to storage
|
407
415
|
*AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_mobi_xml**](docs/PdfApi.md#put_pdf_in_storage_to_mobi_xml) | **PUT** /pdf/\{name}/convert/mobixml | Converts PDF document (located on storage) to MOBIXML format and uploads resulting ZIP archive file to storage
|
@@ -523,6 +531,7 @@ Class | Method | HTTP request | Description
|
|
523
531
|
- [AsposePdfCloud::OutputFormat](docs/OutputFormat.md)
|
524
532
|
- [AsposePdfCloud::PageLayout](docs/PageLayout.md)
|
525
533
|
- [AsposePdfCloud::PageMode](docs/PageMode.md)
|
534
|
+
- [AsposePdfCloud::PageRange](docs/PageRange.md)
|
526
535
|
- [AsposePdfCloud::PageWordCount](docs/PageWordCount.md)
|
527
536
|
- [AsposePdfCloud::Paragraph](docs/Paragraph.md)
|
528
537
|
- [AsposePdfCloud::PartsEmbeddingModes](docs/PartsEmbeddingModes.md)
|
@@ -543,6 +552,7 @@ Class | Method | HTTP request | Description
|
|
543
552
|
- [AsposePdfCloud::SignatureType](docs/SignatureType.md)
|
544
553
|
- [AsposePdfCloud::SoundEncoding](docs/SoundEncoding.md)
|
545
554
|
- [AsposePdfCloud::SoundIcon](docs/SoundIcon.md)
|
555
|
+
- [AsposePdfCloud::SplitRangePdfOptions](docs/SplitRangePdfOptions.md)
|
546
556
|
- [AsposePdfCloud::SplitResult](docs/SplitResult.md)
|
547
557
|
- [AsposePdfCloud::Stamp](docs/Stamp.md)
|
548
558
|
- [AsposePdfCloud::StampIcon](docs/StampIcon.md)
|
data/docs/PageRange.md
ADDED
data/docs/PdfApi.md
CHANGED
@@ -145,7 +145,7 @@ Method | HTTP request | Description
|
|
145
145
|
[**get_pages**](PdfApi.md#get_pages) | **GET** /pdf/\{name}/pages | Read document pages info.
|
146
146
|
[**get_pcl_in_storage_to_pdf**](PdfApi.md#get_pcl_in_storage_to_pdf) | **GET** /pdf/create/pcl | Convert PCL file (located on storage) to PDF format and return resulting file in response.
|
147
147
|
[**get_pdf_a_in_storage_to_pdf**](PdfApi.md#get_pdf_a_in_storage_to_pdf) | **GET** /pdf/create/pdfa | Convert PDFA file (located on storage) to PDF format and return resulting file in response.
|
148
|
-
[**get_pdf_in_storage_to_doc**](PdfApi.md#get_pdf_in_storage_to_doc) | **GET** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and returns resulting file in response content
|
148
|
+
[**get_pdf_in_storage_to_doc**](PdfApi.md#get_pdf_in_storage_to_doc) | **GET** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and returns resulting file in response content.
|
149
149
|
[**get_pdf_in_storage_to_epub**](PdfApi.md#get_pdf_in_storage_to_epub) | **GET** /pdf/\{name}/convert/epub | Converts PDF document (located on storage) to EPUB format and returns resulting file in response content
|
150
150
|
[**get_pdf_in_storage_to_html**](PdfApi.md#get_pdf_in_storage_to_html) | **GET** /pdf/\{name}/convert/html | Converts PDF document (located on storage) to Html format and returns resulting file in response content
|
151
151
|
[**get_pdf_in_storage_to_mobi_xml**](PdfApi.md#get_pdf_in_storage_to_mobi_xml) | **GET** /pdf/\{name}/convert/mobixml | Converts PDF document (located on storage) to MOBIXML format and returns resulting ZIP archive file in response content.
|
@@ -246,6 +246,7 @@ Method | HTTP request | Description
|
|
246
246
|
[**post_sign_page**](PdfApi.md#post_sign_page) | **POST** /pdf/\{name}/pages/\{pageNumber}/sign | Sign page.
|
247
247
|
[**post_signature_field**](PdfApi.md#post_signature_field) | **POST** /pdf/\{name}/fields/signature | Add document signature field.
|
248
248
|
[**post_split_document**](PdfApi.md#post_split_document) | **POST** /pdf/\{name}/split | Split document to parts.
|
249
|
+
[**post_split_range_pdf_document**](PdfApi.md#post_split_range_pdf_document) | **POST** /pdf/\{name}/splitrangepdf |
|
249
250
|
[**post_text_box_fields**](PdfApi.md#post_text_box_fields) | **POST** /pdf/\{name}/fields/textbox | Add document text box fields.
|
250
251
|
[**put_add_new_page**](PdfApi.md#put_add_new_page) | **PUT** /pdf/\{name}/pages | Add new page to end of the document.
|
251
252
|
[**put_add_text**](PdfApi.md#put_add_text) | **PUT** /pdf/\{name}/pages/\{pageNumber}/text | Add text to PDF document page.
|
@@ -312,7 +313,7 @@ Method | HTTP request | Description
|
|
312
313
|
[**put_pdf_in_request_to_xlsx**](PdfApi.md#put_pdf_in_request_to_xlsx) | **PUT** /pdf/convert/xlsx | Converts PDF document (in request content) to XLSX format and uploads resulting file to storage.
|
313
314
|
[**put_pdf_in_request_to_xml**](PdfApi.md#put_pdf_in_request_to_xml) | **PUT** /pdf/convert/xml | Converts PDF document (in request content) to XML format and uploads resulting file to storage.
|
314
315
|
[**put_pdf_in_request_to_xps**](PdfApi.md#put_pdf_in_request_to_xps) | **PUT** /pdf/convert/xps | Converts PDF document (in request content) to XPS format and uploads resulting file to storage.
|
315
|
-
[**put_pdf_in_storage_to_doc**](PdfApi.md#put_pdf_in_storage_to_doc) | **PUT** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and uploads resulting file to storage
|
316
|
+
[**put_pdf_in_storage_to_doc**](PdfApi.md#put_pdf_in_storage_to_doc) | **PUT** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and uploads resulting file to storage.
|
316
317
|
[**put_pdf_in_storage_to_epub**](PdfApi.md#put_pdf_in_storage_to_epub) | **PUT** /pdf/\{name}/convert/epub | Converts PDF document (located on storage) to EPUB format and uploads resulting file to storage
|
317
318
|
[**put_pdf_in_storage_to_html**](PdfApi.md#put_pdf_in_storage_to_html) | **PUT** /pdf/\{name}/convert/html | Converts PDF document (located on storage) to Html format and uploads resulting file to storage
|
318
319
|
[**put_pdf_in_storage_to_mobi_xml**](PdfApi.md#put_pdf_in_storage_to_mobi_xml) | **PUT** /pdf/\{name}/convert/mobixml | Converts PDF document (located on storage) to MOBIXML format and uploads resulting ZIP archive file to storage
|
@@ -2956,6 +2957,7 @@ Name | Type | Description | Notes
|
|
2956
2957
|
**height** | **Integer**| The converted image height. | [optional] [default to 0]
|
2957
2958
|
**folder** | **String**| The document folder. | [optional]
|
2958
2959
|
**storage** | **String**| The document storage. | [optional]
|
2960
|
+
**password** | **String**| The password (Base64). | [optional]
|
2959
2961
|
|
2960
2962
|
### Return type
|
2961
2963
|
|
@@ -2983,6 +2985,7 @@ Name | Type | Description | Notes
|
|
2983
2985
|
**height** | **Integer**| The converted image height. | [optional] [default to 0]
|
2984
2986
|
**folder** | **String**| The document folder. | [optional]
|
2985
2987
|
**storage** | **String**| The document storage. | [optional]
|
2988
|
+
**password** | **String**| The password (Base64). | [optional]
|
2986
2989
|
|
2987
2990
|
### Return type
|
2988
2991
|
|
@@ -3010,6 +3013,7 @@ Name | Type | Description | Notes
|
|
3010
3013
|
**height** | **Integer**| The converted image height. | [optional] [default to 0]
|
3011
3014
|
**folder** | **String**| The document folder. | [optional]
|
3012
3015
|
**storage** | **String**| The document storage. | [optional]
|
3016
|
+
**password** | **String**| The password (Base64). | [optional]
|
3013
3017
|
|
3014
3018
|
### Return type
|
3015
3019
|
|
@@ -3037,6 +3041,7 @@ Name | Type | Description | Notes
|
|
3037
3041
|
**height** | **Integer**| The converted image height. | [optional] [default to 0]
|
3038
3042
|
**folder** | **String**| The document folder. | [optional]
|
3039
3043
|
**storage** | **String**| The document storage. | [optional]
|
3044
|
+
**password** | **String**| The password (Base64). | [optional]
|
3040
3045
|
|
3041
3046
|
### Return type
|
3042
3047
|
|
@@ -3064,6 +3069,7 @@ Name | Type | Description | Notes
|
|
3064
3069
|
**height** | **Integer**| The converted image height. | [optional] [default to 0]
|
3065
3070
|
**folder** | **String**| The document folder. | [optional]
|
3066
3071
|
**storage** | **String**| The document storage. | [optional]
|
3072
|
+
**password** | **String**| The password (Base64). | [optional]
|
3067
3073
|
|
3068
3074
|
### Return type
|
3069
3075
|
|
@@ -3091,6 +3097,7 @@ Name | Type | Description | Notes
|
|
3091
3097
|
**height** | **Integer**| The converted image height. | [optional] [default to 0]
|
3092
3098
|
**folder** | **String**| The document folder. | [optional]
|
3093
3099
|
**storage** | **String**| The document storage. | [optional]
|
3100
|
+
**password** | **String**| The password (Base64). | [optional]
|
3094
3101
|
|
3095
3102
|
### Return type
|
3096
3103
|
|
@@ -3860,7 +3867,7 @@ Name | Type | Description | Notes
|
|
3860
3867
|
# **get_pdf_in_storage_to_doc**
|
3861
3868
|
> File get_pdf_in_storage_to_doc(name, opts)
|
3862
3869
|
|
3863
|
-
Converts PDF document (located on storage) to DOC format and returns resulting file in response content
|
3870
|
+
Converts PDF document (located on storage) to DOC format and returns resulting file in response content.
|
3864
3871
|
|
3865
3872
|
### Parameters
|
3866
3873
|
|
@@ -3877,6 +3884,7 @@ Name | Type | Description | Notes
|
|
3877
3884
|
**relative_horizontal_proximity** | **Float**| Relative horizontal proximity. | [optional]
|
3878
3885
|
**folder** | **String**| The document folder. | [optional]
|
3879
3886
|
**storage** | **String**| The document storage. | [optional]
|
3887
|
+
**password** | **String**| The password (Base64). | [optional]
|
3880
3888
|
|
3881
3889
|
### Return type
|
3882
3890
|
|
@@ -6501,6 +6509,31 @@ Name | Type | Description | Notes
|
|
6501
6509
|
|
6502
6510
|
|
6503
6511
|
|
6512
|
+
# **post_split_range_pdf_document**
|
6513
|
+
> SplitResultResponse post_split_range_pdf_document(name, options, opts)
|
6514
|
+
|
6515
|
+
|
6516
|
+
|
6517
|
+
### Parameters
|
6518
|
+
|
6519
|
+
Name | Type | Description | Notes
|
6520
|
+
------------- | ------------- | ------------- | -------------
|
6521
|
+
**name** | **String**| |
|
6522
|
+
**options** | [**SplitRangePdfOptions**](SplitRangePdfOptions.md)| |
|
6523
|
+
**storage** | **String**| | [optional]
|
6524
|
+
**folder** | **String**| | [optional]
|
6525
|
+
|
6526
|
+
### Return type
|
6527
|
+
|
6528
|
+
[**SplitResultResponse**](SplitResultResponse.md)
|
6529
|
+
|
6530
|
+
### HTTP request headers
|
6531
|
+
|
6532
|
+
- **Content-Type**: application/json
|
6533
|
+
- **Accept**: application/json
|
6534
|
+
|
6535
|
+
|
6536
|
+
|
6504
6537
|
# **post_text_box_fields**
|
6505
6538
|
> AsposeResponse post_text_box_fields(name, fields, opts)
|
6506
6539
|
|
@@ -7695,6 +7728,7 @@ Name | Type | Description | Notes
|
|
7695
7728
|
**height** | **Integer**| The converted image height. | [optional] [default to 0]
|
7696
7729
|
**folder** | **String**| The document folder. | [optional]
|
7697
7730
|
**storage** | **String**| The document storage. | [optional]
|
7731
|
+
**password** | **String**| The password (Base64). | [optional]
|
7698
7732
|
|
7699
7733
|
### Return type
|
7700
7734
|
|
@@ -7723,6 +7757,7 @@ Name | Type | Description | Notes
|
|
7723
7757
|
**height** | **Integer**| The converted image height. | [optional] [default to 0]
|
7724
7758
|
**folder** | **String**| The document folder. | [optional]
|
7725
7759
|
**storage** | **String**| The document storage. | [optional]
|
7760
|
+
**password** | **String**| The password (Base64). | [optional]
|
7726
7761
|
|
7727
7762
|
### Return type
|
7728
7763
|
|
@@ -7751,6 +7786,7 @@ Name | Type | Description | Notes
|
|
7751
7786
|
**height** | **Integer**| The converted image height. | [optional] [default to 0]
|
7752
7787
|
**folder** | **String**| The document folder. | [optional]
|
7753
7788
|
**storage** | **String**| The document storage. | [optional]
|
7789
|
+
**password** | **String**| The password (Base64). | [optional]
|
7754
7790
|
|
7755
7791
|
### Return type
|
7756
7792
|
|
@@ -7779,6 +7815,7 @@ Name | Type | Description | Notes
|
|
7779
7815
|
**height** | **Integer**| The converted image height. | [optional] [default to 0]
|
7780
7816
|
**folder** | **String**| The document folder. | [optional]
|
7781
7817
|
**storage** | **String**| The document storage. | [optional]
|
7818
|
+
**password** | **String**| The password (Base64). | [optional]
|
7782
7819
|
|
7783
7820
|
### Return type
|
7784
7821
|
|
@@ -7807,6 +7844,7 @@ Name | Type | Description | Notes
|
|
7807
7844
|
**height** | **Integer**| The converted image height. | [optional] [default to 0]
|
7808
7845
|
**folder** | **String**| The document folder. | [optional]
|
7809
7846
|
**storage** | **String**| The document storage. | [optional]
|
7847
|
+
**password** | **String**| The password (Base64). | [optional]
|
7810
7848
|
|
7811
7849
|
### Return type
|
7812
7850
|
|
@@ -7835,6 +7873,7 @@ Name | Type | Description | Notes
|
|
7835
7873
|
**height** | **Integer**| The converted image height. | [optional] [default to 0]
|
7836
7874
|
**folder** | **String**| The document folder. | [optional]
|
7837
7875
|
**storage** | **String**| The document storage. | [optional]
|
7876
|
+
**password** | **String**| The password (Base64). | [optional]
|
7838
7877
|
|
7839
7878
|
### Return type
|
7840
7879
|
|
@@ -7917,6 +7956,7 @@ Name | Type | Description | Notes
|
|
7917
7956
|
**recognize_bullets** | **BOOLEAN**| Recognize bullets. | [optional]
|
7918
7957
|
**relative_horizontal_proximity** | **Float**| Relative horizontal proximity. | [optional]
|
7919
7958
|
**storage** | **String**| The document storage. | [optional]
|
7959
|
+
**password** | **String**| The password (Base64). | [optional]
|
7920
7960
|
**file** | **File**| A file to be converted. | [optional]
|
7921
7961
|
|
7922
7962
|
### Return type
|
@@ -8278,7 +8318,7 @@ Name | Type | Description | Notes
|
|
8278
8318
|
# **put_pdf_in_storage_to_doc**
|
8279
8319
|
> AsposeResponse put_pdf_in_storage_to_doc(name, out_path, opts)
|
8280
8320
|
|
8281
|
-
Converts PDF document (located on storage) to DOC format and uploads resulting file to storage
|
8321
|
+
Converts PDF document (located on storage) to DOC format and uploads resulting file to storage.
|
8282
8322
|
|
8283
8323
|
### Parameters
|
8284
8324
|
|
@@ -8296,6 +8336,7 @@ Name | Type | Description | Notes
|
|
8296
8336
|
**relative_horizontal_proximity** | **Float**| Relative horizontal proximity. | [optional]
|
8297
8337
|
**folder** | **String**| The document folder. | [optional]
|
8298
8338
|
**storage** | **String**| The document storage. | [optional]
|
8339
|
+
**password** | **String**| The password (Base64). | [optional]
|
8299
8340
|
|
8300
8341
|
### Return type
|
8301
8342
|
|