aspose_pdf_cloud 23.2.0 → 23.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -665
- data/docs/OrganizeDocumentData.md +10 -0
- data/docs/OrganizeDocumentRequest.md +9 -0
- data/docs/PdfApi.md +52 -0
- data/lib/aspose_pdf_cloud/api/pdf_api.rb +173 -0
- data/lib/aspose_pdf_cloud/models/organize_document_data.rb +257 -0
- data/lib/aspose_pdf_cloud/models/organize_document_request.rb +206 -0
- data/lib/aspose_pdf_cloud/models/page_range.rb +6 -6
- data/lib/aspose_pdf_cloud/version.rb +1 -1
- data/lib/aspose_pdf_cloud.rb +2 -0
- data/test/pdf_tests.rb +30 -6
- metadata +6 -2
data/README.md
CHANGED
@@ -29,7 +29,8 @@ 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 23.
|
32
|
+
## Enhancements in Version 23.4
|
33
|
+
- Merge Selected Pages of PDF Documents.
|
33
34
|
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
|
34
35
|
|
35
36
|
## Installation
|
@@ -45,15 +46,15 @@ gem build aspose_pdf_cloud.gemspec
|
|
45
46
|
Then either install the gem locally:
|
46
47
|
|
47
48
|
```shell
|
48
|
-
gem install ./aspose_pdf_cloud-23.
|
49
|
+
gem install ./aspose_pdf_cloud-23.4.0.gem
|
49
50
|
```
|
50
|
-
(for development, run `gem install --dev ./aspose_pdf_cloud-23.
|
51
|
+
(for development, run `gem install --dev ./aspose_pdf_cloud-23.4.0.gem` to install the development dependencies)
|
51
52
|
|
52
53
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
53
54
|
|
54
55
|
Finally add this to the Gemfile:
|
55
56
|
|
56
|
-
gem 'aspose_pdf_cloud', '~> 23.
|
57
|
+
gem 'aspose_pdf_cloud', '~> 23.4.0'
|
57
58
|
|
58
59
|
### Install from Git
|
59
60
|
|
@@ -86,664 +87,3 @@ Aspose PDF SDK includes a suite of unit tests within the "test" subdirectory. Th
|
|
86
87
|
|
87
88
|
## Licensing
|
88
89
|
All Aspose.PDF Cloud SDKs are licensed under [MIT License](LICENSE).
|
89
|
-
|
90
|
-
## Documentation for API Endpoints
|
91
|
-
|
92
|
-
All URIs are relative to *https://api.aspose.cloud/v3.0*
|
93
|
-
|
94
|
-
Class | Method | HTTP request | Description
|
95
|
-
------------ | ------------- | ------------- | -------------
|
96
|
-
*AsposePdfCloud::PdfApi* | [**copy_file**](docs/PdfApi.md#copy_file) | **PUT** /pdf/storage/file/copy/\{srcPath} | Copy file
|
97
|
-
*AsposePdfCloud::PdfApi* | [**copy_folder**](docs/PdfApi.md#copy_folder) | **PUT** /pdf/storage/folder/copy/\{srcPath} | Copy folder
|
98
|
-
*AsposePdfCloud::PdfApi* | [**create_folder**](docs/PdfApi.md#create_folder) | **PUT** /pdf/storage/folder/\{path} | Create the folder
|
99
|
-
*AsposePdfCloud::PdfApi* | [**delete_annotation**](docs/PdfApi.md#delete_annotation) | **DELETE** /pdf/\{name}/annotations/\{annotationId} | Delete document annotation by ID
|
100
|
-
*AsposePdfCloud::PdfApi* | [**delete_bookmark**](docs/PdfApi.md#delete_bookmark) | **DELETE** /pdf/\{name}/bookmarks/bookmark/\{bookmarkPath} | Delete document bookmark by ID.
|
101
|
-
*AsposePdfCloud::PdfApi* | [**delete_document_annotations**](docs/PdfApi.md#delete_document_annotations) | **DELETE** /pdf/\{name}/annotations | Delete all annotations from the document
|
102
|
-
*AsposePdfCloud::PdfApi* | [**delete_document_bookmarks**](docs/PdfApi.md#delete_document_bookmarks) | **DELETE** /pdf/\{name}/bookmarks/tree | Delete all document bookmarks.
|
103
|
-
*AsposePdfCloud::PdfApi* | [**delete_document_link_annotations**](docs/PdfApi.md#delete_document_link_annotations) | **DELETE** /pdf/\{name}/links | Delete all link annotations from the document
|
104
|
-
*AsposePdfCloud::PdfApi* | [**delete_document_stamps**](docs/PdfApi.md#delete_document_stamps) | **DELETE** /pdf/\{name}/stamps | Delete all stamps from the document
|
105
|
-
*AsposePdfCloud::PdfApi* | [**delete_document_tables**](docs/PdfApi.md#delete_document_tables) | **DELETE** /pdf/\{name}/tables | Delete all tables from the document
|
106
|
-
*AsposePdfCloud::PdfApi* | [**delete_field**](docs/PdfApi.md#delete_field) | **DELETE** /pdf/\{name}/fields/\{fieldName} | Delete document field by name.
|
107
|
-
*AsposePdfCloud::PdfApi* | [**delete_file**](docs/PdfApi.md#delete_file) | **DELETE** /pdf/storage/file/\{path} | Delete file
|
108
|
-
*AsposePdfCloud::PdfApi* | [**delete_folder**](docs/PdfApi.md#delete_folder) | **DELETE** /pdf/storage/folder/\{path} | Delete folder
|
109
|
-
*AsposePdfCloud::PdfApi* | [**delete_image**](docs/PdfApi.md#delete_image) | **DELETE** /pdf/\{name}/images/\{imageId} | Delete image from document page.
|
110
|
-
*AsposePdfCloud::PdfApi* | [**delete_link_annotation**](docs/PdfApi.md#delete_link_annotation) | **DELETE** /pdf/\{name}/links/\{linkId} | Delete document page link annotation by ID
|
111
|
-
*AsposePdfCloud::PdfApi* | [**delete_page**](docs/PdfApi.md#delete_page) | **DELETE** /pdf/\{name}/pages/\{pageNumber} | Delete document page by its number.
|
112
|
-
*AsposePdfCloud::PdfApi* | [**delete_page_annotations**](docs/PdfApi.md#delete_page_annotations) | **DELETE** /pdf/\{name}/pages/\{pageNumber}/annotations | Delete all annotations from the page
|
113
|
-
*AsposePdfCloud::PdfApi* | [**delete_page_link_annotations**](docs/PdfApi.md#delete_page_link_annotations) | **DELETE** /pdf/\{name}/pages/\{pageNumber}/links | Delete all link annotations from the page
|
114
|
-
*AsposePdfCloud::PdfApi* | [**delete_page_stamps**](docs/PdfApi.md#delete_page_stamps) | **DELETE** /pdf/\{name}/pages/\{pageNumber}/stamps | Delete all stamps from the page
|
115
|
-
*AsposePdfCloud::PdfApi* | [**delete_page_tables**](docs/PdfApi.md#delete_page_tables) | **DELETE** /pdf/\{name}/pages/\{pageNumber}/tables | Delete all tables from the page
|
116
|
-
*AsposePdfCloud::PdfApi* | [**delete_properties**](docs/PdfApi.md#delete_properties) | **DELETE** /pdf/\{name}/documentproperties | Delete custom document properties.
|
117
|
-
*AsposePdfCloud::PdfApi* | [**delete_property**](docs/PdfApi.md#delete_property) | **DELETE** /pdf/\{name}/documentproperties/\{propertyName} | Delete document property.
|
118
|
-
*AsposePdfCloud::PdfApi* | [**delete_stamp**](docs/PdfApi.md#delete_stamp) | **DELETE** /pdf/\{name}/stamps/\{stampId} | Delete document stamp by ID
|
119
|
-
*AsposePdfCloud::PdfApi* | [**delete_table**](docs/PdfApi.md#delete_table) | **DELETE** /pdf/\{name}/tables/\{tableId} | Delete document table by ID
|
120
|
-
*AsposePdfCloud::PdfApi* | [**download_file**](docs/PdfApi.md#download_file) | **GET** /pdf/storage/file/\{path} | Download file
|
121
|
-
*AsposePdfCloud::PdfApi* | [**get_bookmark**](docs/PdfApi.md#get_bookmark) | **GET** /pdf/\{name}/bookmarks/bookmark/\{bookmarkPath} | Read document bookmark.
|
122
|
-
*AsposePdfCloud::PdfApi* | [**get_bookmarks**](docs/PdfApi.md#get_bookmarks) | **GET** /pdf/\{name}/bookmarks/list/\{bookmarkPath} | Read document bookmarks node list.
|
123
|
-
*AsposePdfCloud::PdfApi* | [**get_caret_annotation**](docs/PdfApi.md#get_caret_annotation) | **GET** /pdf/\{name}/annotations/caret/\{annotationId} | Read document page caret annotation by ID.
|
124
|
-
*AsposePdfCloud::PdfApi* | [**get_check_box_field**](docs/PdfApi.md#get_check_box_field) | **GET** /pdf/\{name}/fields/checkbox/\{fieldName} | Read document checkbox field by name.
|
125
|
-
*AsposePdfCloud::PdfApi* | [**get_circle_annotation**](docs/PdfApi.md#get_circle_annotation) | **GET** /pdf/\{name}/annotations/circle/\{annotationId} | Read document page circle annotation by ID.
|
126
|
-
*AsposePdfCloud::PdfApi* | [**get_combo_box_field**](docs/PdfApi.md#get_combo_box_field) | **GET** /pdf/\{name}/fields/combobox/\{fieldName} | Read document combobox field by name.
|
127
|
-
*AsposePdfCloud::PdfApi* | [**get_disc_usage**](docs/PdfApi.md#get_disc_usage) | **GET** /pdf/storage/disc | Get disc usage
|
128
|
-
*AsposePdfCloud::PdfApi* | [**get_document**](docs/PdfApi.md#get_document) | **GET** /pdf/\{name} | Read common document info.
|
129
|
-
*AsposePdfCloud::PdfApi* | [**get_document_annotations**](docs/PdfApi.md#get_document_annotations) | **GET** /pdf/\{name}/annotations | Read document page annotations. Returns only FreeTextAnnotations, TextAnnotations, other annotations will implemented next releases.
|
130
|
-
*AsposePdfCloud::PdfApi* | [**get_document_attachment_by_index**](docs/PdfApi.md#get_document_attachment_by_index) | **GET** /pdf/\{name}/attachments/\{attachmentIndex} | Read document attachment info by its index.
|
131
|
-
*AsposePdfCloud::PdfApi* | [**get_document_attachments**](docs/PdfApi.md#get_document_attachments) | **GET** /pdf/\{name}/attachments | Read document attachments info.
|
132
|
-
*AsposePdfCloud::PdfApi* | [**get_document_bookmarks**](docs/PdfApi.md#get_document_bookmarks) | **GET** /pdf/\{name}/bookmarks/tree | Read document bookmarks tree.
|
133
|
-
*AsposePdfCloud::PdfApi* | [**get_document_caret_annotations**](docs/PdfApi.md#get_document_caret_annotations) | **GET** /pdf/\{name}/annotations/caret | Read document caret annotations.
|
134
|
-
*AsposePdfCloud::PdfApi* | [**get_document_check_box_fields**](docs/PdfApi.md#get_document_check_box_fields) | **GET** /pdf/\{name}/fields/checkbox | Read document checkbox fields.
|
135
|
-
*AsposePdfCloud::PdfApi* | [**get_document_circle_annotations**](docs/PdfApi.md#get_document_circle_annotations) | **GET** /pdf/\{name}/annotations/circle | Read document circle annotations.
|
136
|
-
*AsposePdfCloud::PdfApi* | [**get_document_combo_box_fields**](docs/PdfApi.md#get_document_combo_box_fields) | **GET** /pdf/\{name}/fields/combobox | Read document combobox fields.
|
137
|
-
*AsposePdfCloud::PdfApi* | [**get_document_display_properties**](docs/PdfApi.md#get_document_display_properties) | **GET** /pdf/\{name}/displayproperties | Read document display properties.
|
138
|
-
*AsposePdfCloud::PdfApi* | [**get_document_file_attachment_annotations**](docs/PdfApi.md#get_document_file_attachment_annotations) | **GET** /pdf/\{name}/annotations/fileattachment | Read document FileAttachment annotations.
|
139
|
-
*AsposePdfCloud::PdfApi* | [**get_document_free_text_annotations**](docs/PdfApi.md#get_document_free_text_annotations) | **GET** /pdf/\{name}/annotations/freetext | Read document free text annotations.
|
140
|
-
*AsposePdfCloud::PdfApi* | [**get_document_highlight_annotations**](docs/PdfApi.md#get_document_highlight_annotations) | **GET** /pdf/\{name}/annotations/highlight | Read document highlight annotations.
|
141
|
-
*AsposePdfCloud::PdfApi* | [**get_document_ink_annotations**](docs/PdfApi.md#get_document_ink_annotations) | **GET** /pdf/\{name}/annotations/ink | Read document ink annotations.
|
142
|
-
*AsposePdfCloud::PdfApi* | [**get_document_line_annotations**](docs/PdfApi.md#get_document_line_annotations) | **GET** /pdf/\{name}/annotations/line | Read document line annotations.
|
143
|
-
*AsposePdfCloud::PdfApi* | [**get_document_list_box_fields**](docs/PdfApi.md#get_document_list_box_fields) | **GET** /pdf/\{name}/fields/listbox | Read document listbox fields.
|
144
|
-
*AsposePdfCloud::PdfApi* | [**get_document_movie_annotations**](docs/PdfApi.md#get_document_movie_annotations) | **GET** /pdf/\{name}/annotations/movie | Read document movie annotations.
|
145
|
-
*AsposePdfCloud::PdfApi* | [**get_document_poly_line_annotations**](docs/PdfApi.md#get_document_poly_line_annotations) | **GET** /pdf/\{name}/annotations/polyline | Read document polyline annotations.
|
146
|
-
*AsposePdfCloud::PdfApi* | [**get_document_polygon_annotations**](docs/PdfApi.md#get_document_polygon_annotations) | **GET** /pdf/\{name}/annotations/polygon | Read document polygon annotations.
|
147
|
-
*AsposePdfCloud::PdfApi* | [**get_document_popup_annotations**](docs/PdfApi.md#get_document_popup_annotations) | **GET** /pdf/\{name}/annotations/popup | Read document popup annotations.
|
148
|
-
*AsposePdfCloud::PdfApi* | [**get_document_popup_annotations_by_parent**](docs/PdfApi.md#get_document_popup_annotations_by_parent) | **GET** /pdf/\{name}/annotations/\{annotationId}/popup | Read document popup annotations by parent id.
|
149
|
-
*AsposePdfCloud::PdfApi* | [**get_document_properties**](docs/PdfApi.md#get_document_properties) | **GET** /pdf/\{name}/documentproperties | Read document properties.
|
150
|
-
*AsposePdfCloud::PdfApi* | [**get_document_property**](docs/PdfApi.md#get_document_property) | **GET** /pdf/\{name}/documentproperties/\{propertyName} | Read document property by name.
|
151
|
-
*AsposePdfCloud::PdfApi* | [**get_document_radio_button_fields**](docs/PdfApi.md#get_document_radio_button_fields) | **GET** /pdf/\{name}/fields/radiobutton | Read document radiobutton fields.
|
152
|
-
*AsposePdfCloud::PdfApi* | [**get_document_redaction_annotations**](docs/PdfApi.md#get_document_redaction_annotations) | **GET** /pdf/\{name}/annotations/redaction | Read document redaction annotations.
|
153
|
-
*AsposePdfCloud::PdfApi* | [**get_document_screen_annotations**](docs/PdfApi.md#get_document_screen_annotations) | **GET** /pdf/\{name}/annotations/screen | Read document screen annotations.
|
154
|
-
*AsposePdfCloud::PdfApi* | [**get_document_signature_fields**](docs/PdfApi.md#get_document_signature_fields) | **GET** /pdf/\{name}/fields/signature | Read document signature fields.
|
155
|
-
*AsposePdfCloud::PdfApi* | [**get_document_sound_annotations**](docs/PdfApi.md#get_document_sound_annotations) | **GET** /pdf/\{name}/annotations/sound | Read document sound annotations.
|
156
|
-
*AsposePdfCloud::PdfApi* | [**get_document_square_annotations**](docs/PdfApi.md#get_document_square_annotations) | **GET** /pdf/\{name}/annotations/square | Read document square annotations.
|
157
|
-
*AsposePdfCloud::PdfApi* | [**get_document_squiggly_annotations**](docs/PdfApi.md#get_document_squiggly_annotations) | **GET** /pdf/\{name}/annotations/squiggly | Read document squiggly annotations.
|
158
|
-
*AsposePdfCloud::PdfApi* | [**get_document_stamp_annotations**](docs/PdfApi.md#get_document_stamp_annotations) | **GET** /pdf/\{name}/annotations/stamp | Read document stamp annotations.
|
159
|
-
*AsposePdfCloud::PdfApi* | [**get_document_stamps**](docs/PdfApi.md#get_document_stamps) | **GET** /pdf/\{name}/stamps | Read document stamps.
|
160
|
-
*AsposePdfCloud::PdfApi* | [**get_document_strike_out_annotations**](docs/PdfApi.md#get_document_strike_out_annotations) | **GET** /pdf/\{name}/annotations/strikeout | Read document StrikeOut annotations.
|
161
|
-
*AsposePdfCloud::PdfApi* | [**get_document_tables**](docs/PdfApi.md#get_document_tables) | **GET** /pdf/\{name}/tables | Read document tables.
|
162
|
-
*AsposePdfCloud::PdfApi* | [**get_document_text_annotations**](docs/PdfApi.md#get_document_text_annotations) | **GET** /pdf/\{name}/annotations/text | Read document text annotations.
|
163
|
-
*AsposePdfCloud::PdfApi* | [**get_document_text_box_fields**](docs/PdfApi.md#get_document_text_box_fields) | **GET** /pdf/\{name}/fields/textbox | Read document text box fields.
|
164
|
-
*AsposePdfCloud::PdfApi* | [**get_document_underline_annotations**](docs/PdfApi.md#get_document_underline_annotations) | **GET** /pdf/\{name}/annotations/underline | Read document underline annotations.
|
165
|
-
*AsposePdfCloud::PdfApi* | [**get_download_document_attachment_by_index**](docs/PdfApi.md#get_download_document_attachment_by_index) | **GET** /pdf/\{name}/attachments/\{attachmentIndex}/download | Download document attachment content by its index.
|
166
|
-
*AsposePdfCloud::PdfApi* | [**get_epub_in_storage_to_pdf**](docs/PdfApi.md#get_epub_in_storage_to_pdf) | **GET** /pdf/create/epub | Convert EPUB file (located on storage) to PDF format and return resulting file in response.
|
167
|
-
*AsposePdfCloud::PdfApi* | [**get_export_fields_from_pdf_to_fdf_in_storage**](docs/PdfApi.md#get_export_fields_from_pdf_to_fdf_in_storage) | **GET** /pdf/\{name}/export/fdf | Export fields from from PDF in storage to FDF file.
|
168
|
-
*AsposePdfCloud::PdfApi* | [**get_export_fields_from_pdf_to_xfdf_in_storage**](docs/PdfApi.md#get_export_fields_from_pdf_to_xfdf_in_storage) | **GET** /pdf/\{name}/export/xfdf | Export fields from from PDF in storage to XFDF file.
|
169
|
-
*AsposePdfCloud::PdfApi* | [**get_export_fields_from_pdf_to_xml_in_storage**](docs/PdfApi.md#get_export_fields_from_pdf_to_xml_in_storage) | **GET** /pdf/\{name}/export/xml | Export fields from from PDF in storage to XML file.
|
170
|
-
*AsposePdfCloud::PdfApi* | [**get_field**](docs/PdfApi.md#get_field) | **GET** /pdf/\{name}/fields/\{fieldName} | Get document field by name.
|
171
|
-
*AsposePdfCloud::PdfApi* | [**get_fields**](docs/PdfApi.md#get_fields) | **GET** /pdf/\{name}/fields | Get document fields.
|
172
|
-
*AsposePdfCloud::PdfApi* | [**get_file_attachment_annotation**](docs/PdfApi.md#get_file_attachment_annotation) | **GET** /pdf/\{name}/annotations/fileattachment/\{annotationId} | Read document page FileAttachment annotation by ID.
|
173
|
-
*AsposePdfCloud::PdfApi* | [**get_file_attachment_annotation_data**](docs/PdfApi.md#get_file_attachment_annotation_data) | **GET** /pdf/\{name}/annotations/fileattachment/\{annotationId}/data | Read document page FileAttachment annotation by ID.
|
174
|
-
*AsposePdfCloud::PdfApi* | [**get_file_versions**](docs/PdfApi.md#get_file_versions) | **GET** /pdf/storage/version/\{path} | Get file versions
|
175
|
-
*AsposePdfCloud::PdfApi* | [**get_files_list**](docs/PdfApi.md#get_files_list) | **GET** /pdf/storage/folder/\{path} | Get all files and folders within a folder
|
176
|
-
*AsposePdfCloud::PdfApi* | [**get_free_text_annotation**](docs/PdfApi.md#get_free_text_annotation) | **GET** /pdf/\{name}/annotations/freetext/\{annotationId} | Read document page free text annotation by ID.
|
177
|
-
*AsposePdfCloud::PdfApi* | [**get_highlight_annotation**](docs/PdfApi.md#get_highlight_annotation) | **GET** /pdf/\{name}/annotations/highlight/\{annotationId} | Read document page highlight annotation by ID.
|
178
|
-
*AsposePdfCloud::PdfApi* | [**get_html_in_storage_to_pdf**](docs/PdfApi.md#get_html_in_storage_to_pdf) | **GET** /pdf/create/html | Convert HTML file (located on storage) to PDF format and return resulting file in response.
|
179
|
-
*AsposePdfCloud::PdfApi* | [**get_image**](docs/PdfApi.md#get_image) | **GET** /pdf/\{name}/images/\{imageId} | Read document image by ID.
|
180
|
-
*AsposePdfCloud::PdfApi* | [**get_image_extract_as_gif**](docs/PdfApi.md#get_image_extract_as_gif) | **GET** /pdf/\{name}/images/\{imageId}/extract/gif | Extract document image in GIF format
|
181
|
-
*AsposePdfCloud::PdfApi* | [**get_image_extract_as_jpeg**](docs/PdfApi.md#get_image_extract_as_jpeg) | **GET** /pdf/\{name}/images/\{imageId}/extract/jpeg | Extract document image in JPEG format
|
182
|
-
*AsposePdfCloud::PdfApi* | [**get_image_extract_as_png**](docs/PdfApi.md#get_image_extract_as_png) | **GET** /pdf/\{name}/images/\{imageId}/extract/png | Extract document image in PNG format
|
183
|
-
*AsposePdfCloud::PdfApi* | [**get_image_extract_as_tiff**](docs/PdfApi.md#get_image_extract_as_tiff) | **GET** /pdf/\{name}/images/\{imageId}/extract/tiff | Extract document image in TIFF format
|
184
|
-
*AsposePdfCloud::PdfApi* | [**get_images**](docs/PdfApi.md#get_images) | **GET** /pdf/\{name}/pages/\{pageNumber}/images | Read document images.
|
185
|
-
*AsposePdfCloud::PdfApi* | [**get_import_fields_from_fdf_in_storage**](docs/PdfApi.md#get_import_fields_from_fdf_in_storage) | **GET** /pdf/\{name}/import/fdf | Update fields from FDF file in storage.
|
186
|
-
*AsposePdfCloud::PdfApi* | [**get_import_fields_from_xfdf_in_storage**](docs/PdfApi.md#get_import_fields_from_xfdf_in_storage) | **GET** /pdf/\{name}/import/xfdf | Update fields from XFDF file in storage.
|
187
|
-
*AsposePdfCloud::PdfApi* | [**get_import_fields_from_xml_in_storage**](docs/PdfApi.md#get_import_fields_from_xml_in_storage) | **GET** /pdf/\{name}/import/xml | Import from XML file (located on storage) to PDF format and return resulting file in response.
|
188
|
-
*AsposePdfCloud::PdfApi* | [**get_ink_annotation**](docs/PdfApi.md#get_ink_annotation) | **GET** /pdf/\{name}/annotations/ink/\{annotationId} | Read document page ink annotation by ID.
|
189
|
-
*AsposePdfCloud::PdfApi* | [**get_line_annotation**](docs/PdfApi.md#get_line_annotation) | **GET** /pdf/\{name}/annotations/line/\{annotationId} | Read document page line annotation by ID.
|
190
|
-
*AsposePdfCloud::PdfApi* | [**get_link_annotation**](docs/PdfApi.md#get_link_annotation) | **GET** /pdf/\{name}/links/\{linkId} | Read document link annotation by ID.
|
191
|
-
*AsposePdfCloud::PdfApi* | [**get_list_box_field**](docs/PdfApi.md#get_list_box_field) | **GET** /pdf/\{name}/fields/listbox/\{fieldName} | Read document listbox field by name.
|
192
|
-
*AsposePdfCloud::PdfApi* | [**get_markdown_in_storage_to_pdf**](docs/PdfApi.md#get_markdown_in_storage_to_pdf) | **GET** /pdf/create/markdown | Convert MD file (located on storage) to PDF format and return resulting file in response.
|
193
|
-
*AsposePdfCloud::PdfApi* | [**get_mht_in_storage_to_pdf**](docs/PdfApi.md#get_mht_in_storage_to_pdf) | **GET** /pdf/create/mht | Convert MHT file (located on storage) to PDF format and return resulting file in response.
|
194
|
-
*AsposePdfCloud::PdfApi* | [**get_movie_annotation**](docs/PdfApi.md#get_movie_annotation) | **GET** /pdf/\{name}/annotations/movie/\{annotationId} | Read document page movie annotation by ID.
|
195
|
-
*AsposePdfCloud::PdfApi* | [**get_page**](docs/PdfApi.md#get_page) | **GET** /pdf/\{name}/pages/\{pageNumber} | Read document page info.
|
196
|
-
*AsposePdfCloud::PdfApi* | [**get_page_annotations**](docs/PdfApi.md#get_page_annotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations | Read document page annotations. Returns only FreeTextAnnotations, TextAnnotations, other annotations will implemented next releases.
|
197
|
-
*AsposePdfCloud::PdfApi* | [**get_page_caret_annotations**](docs/PdfApi.md#get_page_caret_annotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/caret | Read document page caret annotations.
|
198
|
-
*AsposePdfCloud::PdfApi* | [**get_page_check_box_fields**](docs/PdfApi.md#get_page_check_box_fields) | **GET** /pdf/\{name}/page/\{pageNumber}/fields/checkbox | Read document page checkbox fields.
|
199
|
-
*AsposePdfCloud::PdfApi* | [**get_page_circle_annotations**](docs/PdfApi.md#get_page_circle_annotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/circle | Read document page circle annotations.
|
200
|
-
*AsposePdfCloud::PdfApi* | [**get_page_combo_box_fields**](docs/PdfApi.md#get_page_combo_box_fields) | **GET** /pdf/\{name}/page/\{pageNumber}/fields/combobox | Read document page combobox fields.
|
201
|
-
*AsposePdfCloud::PdfApi* | [**get_page_convert_to_bmp**](docs/PdfApi.md#get_page_convert_to_bmp) | **GET** /pdf/\{name}/pages/\{pageNumber}/convert/bmp | Convert document page to Bmp image and return resulting file in response.
|
202
|
-
*AsposePdfCloud::PdfApi* | [**get_page_convert_to_emf**](docs/PdfApi.md#get_page_convert_to_emf) | **GET** /pdf/\{name}/pages/\{pageNumber}/convert/emf | Convert document page to Emf image and return resulting file in response.
|
203
|
-
*AsposePdfCloud::PdfApi* | [**get_page_convert_to_gif**](docs/PdfApi.md#get_page_convert_to_gif) | **GET** /pdf/\{name}/pages/\{pageNumber}/convert/gif | Convert document page to Gif image and return resulting file in response.
|
204
|
-
*AsposePdfCloud::PdfApi* | [**get_page_convert_to_jpeg**](docs/PdfApi.md#get_page_convert_to_jpeg) | **GET** /pdf/\{name}/pages/\{pageNumber}/convert/jpeg | Convert document page to Jpeg image and return resulting file in response.
|
205
|
-
*AsposePdfCloud::PdfApi* | [**get_page_convert_to_png**](docs/PdfApi.md#get_page_convert_to_png) | **GET** /pdf/\{name}/pages/\{pageNumber}/convert/png | Convert document page to Png image and return resulting file in response.
|
206
|
-
*AsposePdfCloud::PdfApi* | [**get_page_convert_to_tiff**](docs/PdfApi.md#get_page_convert_to_tiff) | **GET** /pdf/\{name}/pages/\{pageNumber}/convert/tiff | Convert document page to Tiff image and return resulting file in response.
|
207
|
-
*AsposePdfCloud::PdfApi* | [**get_page_file_attachment_annotations**](docs/PdfApi.md#get_page_file_attachment_annotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/fileattachment | Read document page FileAttachment annotations.
|
208
|
-
*AsposePdfCloud::PdfApi* | [**get_page_free_text_annotations**](docs/PdfApi.md#get_page_free_text_annotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/freetext | Read document page free text annotations.
|
209
|
-
*AsposePdfCloud::PdfApi* | [**get_page_highlight_annotations**](docs/PdfApi.md#get_page_highlight_annotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/highlight | Read document page highlight annotations.
|
210
|
-
*AsposePdfCloud::PdfApi* | [**get_page_ink_annotations**](docs/PdfApi.md#get_page_ink_annotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/ink | Read document page ink annotations.
|
211
|
-
*AsposePdfCloud::PdfApi* | [**get_page_line_annotations**](docs/PdfApi.md#get_page_line_annotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/line | Read document page line annotations.
|
212
|
-
*AsposePdfCloud::PdfApi* | [**get_page_link_annotation**](docs/PdfApi.md#get_page_link_annotation) | **GET** /pdf/\{name}/pages/\{pageNumber}/links/\{linkId} | Read document page link annotation by ID.
|
213
|
-
*AsposePdfCloud::PdfApi* | [**get_page_link_annotations**](docs/PdfApi.md#get_page_link_annotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/links | Read document page link annotations.
|
214
|
-
*AsposePdfCloud::PdfApi* | [**get_page_list_box_fields**](docs/PdfApi.md#get_page_list_box_fields) | **GET** /pdf/\{name}/page/\{pageNumber}/fields/listbox | Read document page listbox fields.
|
215
|
-
*AsposePdfCloud::PdfApi* | [**get_page_movie_annotations**](docs/PdfApi.md#get_page_movie_annotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/movie | Read document page movie annotations.
|
216
|
-
*AsposePdfCloud::PdfApi* | [**get_page_poly_line_annotations**](docs/PdfApi.md#get_page_poly_line_annotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/polyline | Read document page polyline annotations.
|
217
|
-
*AsposePdfCloud::PdfApi* | [**get_page_polygon_annotations**](docs/PdfApi.md#get_page_polygon_annotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/polygon | Read document page polygon annotations.
|
218
|
-
*AsposePdfCloud::PdfApi* | [**get_page_popup_annotations**](docs/PdfApi.md#get_page_popup_annotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/popup | Read document page popup annotations.
|
219
|
-
*AsposePdfCloud::PdfApi* | [**get_page_radio_button_fields**](docs/PdfApi.md#get_page_radio_button_fields) | **GET** /pdf/\{name}/page/\{pageNumber}/fields/radiobutton | Read document page radiobutton fields.
|
220
|
-
*AsposePdfCloud::PdfApi* | [**get_page_redaction_annotations**](docs/PdfApi.md#get_page_redaction_annotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/redaction | Read document page redaction annotations.
|
221
|
-
*AsposePdfCloud::PdfApi* | [**get_page_screen_annotations**](docs/PdfApi.md#get_page_screen_annotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/screen | Read document page screen annotations.
|
222
|
-
*AsposePdfCloud::PdfApi* | [**get_page_signature_fields**](docs/PdfApi.md#get_page_signature_fields) | **GET** /pdf/\{name}/page/\{pageNumber}/fields/signature | Read document page signature fields.
|
223
|
-
*AsposePdfCloud::PdfApi* | [**get_page_sound_annotations**](docs/PdfApi.md#get_page_sound_annotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/sound | Read document page sound annotations.
|
224
|
-
*AsposePdfCloud::PdfApi* | [**get_page_square_annotations**](docs/PdfApi.md#get_page_square_annotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/square | Read document page square annotations.
|
225
|
-
*AsposePdfCloud::PdfApi* | [**get_page_squiggly_annotations**](docs/PdfApi.md#get_page_squiggly_annotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/squiggly | Read document page squiggly annotations.
|
226
|
-
*AsposePdfCloud::PdfApi* | [**get_page_stamp_annotations**](docs/PdfApi.md#get_page_stamp_annotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/stamp | Read document page stamp annotations.
|
227
|
-
*AsposePdfCloud::PdfApi* | [**get_page_stamps**](docs/PdfApi.md#get_page_stamps) | **GET** /pdf/\{name}/pages/\{pageNumber}/stamps | Read page document stamps.
|
228
|
-
*AsposePdfCloud::PdfApi* | [**get_page_strike_out_annotations**](docs/PdfApi.md#get_page_strike_out_annotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/strikeout | Read document page StrikeOut annotations.
|
229
|
-
*AsposePdfCloud::PdfApi* | [**get_page_tables**](docs/PdfApi.md#get_page_tables) | **GET** /pdf/\{name}/pages/\{pageNumber}/tables | Read document page tables.
|
230
|
-
*AsposePdfCloud::PdfApi* | [**get_page_text**](docs/PdfApi.md#get_page_text) | **GET** /pdf/\{name}/pages/\{pageNumber}/text | Read page text items.
|
231
|
-
*AsposePdfCloud::PdfApi* | [**get_page_text_annotations**](docs/PdfApi.md#get_page_text_annotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/text | Read document page text annotations.
|
232
|
-
*AsposePdfCloud::PdfApi* | [**get_page_text_box_fields**](docs/PdfApi.md#get_page_text_box_fields) | **GET** /pdf/\{name}/page/\{pageNumber}/fields/textbox | Read document page text box fields.
|
233
|
-
*AsposePdfCloud::PdfApi* | [**get_page_underline_annotations**](docs/PdfApi.md#get_page_underline_annotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/underline | Read document page underline annotations.
|
234
|
-
*AsposePdfCloud::PdfApi* | [**get_pages**](docs/PdfApi.md#get_pages) | **GET** /pdf/\{name}/pages | Read document pages info.
|
235
|
-
*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
|
-
*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.
|
238
|
-
*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
|
-
*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
|
-
*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.
|
241
|
-
*AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_pdf_a**](docs/PdfApi.md#get_pdf_in_storage_to_pdf_a) | **GET** /pdf/\{name}/convert/pdfa | Converts PDF document (located on storage) to PdfA format and returns resulting file in response content
|
242
|
-
*AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_pptx**](docs/PdfApi.md#get_pdf_in_storage_to_pptx) | **GET** /pdf/\{name}/convert/pptx | Converts PDF document (located on storage) to PPTX format and returns resulting file in response content
|
243
|
-
*AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_svg**](docs/PdfApi.md#get_pdf_in_storage_to_svg) | **GET** /pdf/\{name}/convert/svg | Converts PDF document (located on storage) to SVG format and returns resulting file in response content
|
244
|
-
*AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_te_x**](docs/PdfApi.md#get_pdf_in_storage_to_te_x) | **GET** /pdf/\{name}/convert/tex | Converts PDF document (located on storage) to TeX format and returns resulting file in response content
|
245
|
-
*AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_tiff**](docs/PdfApi.md#get_pdf_in_storage_to_tiff) | **GET** /pdf/\{name}/convert/tiff | Converts PDF document (located on storage) to TIFF format and returns resulting file in response content
|
246
|
-
*AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_xls**](docs/PdfApi.md#get_pdf_in_storage_to_xls) | **GET** /pdf/\{name}/convert/xls | Converts PDF document (located on storage) to XLS format and returns resulting file in response content
|
247
|
-
*AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_xlsx**](docs/PdfApi.md#get_pdf_in_storage_to_xlsx) | **GET** /pdf/\{name}/convert/xlsx | Converts PDF document (located on storage) to XLSX format and returns resulting file in response content
|
248
|
-
*AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_xml**](docs/PdfApi.md#get_pdf_in_storage_to_xml) | **GET** /pdf/\{name}/convert/xml | Converts PDF document (located on storage) to XML format and returns resulting file in response content
|
249
|
-
*AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_xps**](docs/PdfApi.md#get_pdf_in_storage_to_xps) | **GET** /pdf/\{name}/convert/xps | Converts PDF document (located on storage) to XPS format and returns resulting file in response content
|
250
|
-
*AsposePdfCloud::PdfApi* | [**get_poly_line_annotation**](docs/PdfApi.md#get_poly_line_annotation) | **GET** /pdf/\{name}/annotations/polyline/\{annotationId} | Read document page polyline annotation by ID.
|
251
|
-
*AsposePdfCloud::PdfApi* | [**get_polygon_annotation**](docs/PdfApi.md#get_polygon_annotation) | **GET** /pdf/\{name}/annotations/polygon/\{annotationId} | Read document page polygon annotation by ID.
|
252
|
-
*AsposePdfCloud::PdfApi* | [**get_popup_annotation**](docs/PdfApi.md#get_popup_annotation) | **GET** /pdf/\{name}/annotations/popup/\{annotationId} | Read document page popup annotation by ID.
|
253
|
-
*AsposePdfCloud::PdfApi* | [**get_ps_in_storage_to_pdf**](docs/PdfApi.md#get_ps_in_storage_to_pdf) | **GET** /pdf/create/ps | Convert PS file (located on storage) to PDF format and return resulting file in response.
|
254
|
-
*AsposePdfCloud::PdfApi* | [**get_radio_button_field**](docs/PdfApi.md#get_radio_button_field) | **GET** /pdf/\{name}/fields/radiobutton/\{fieldName} | Read document RadioButton field by name.
|
255
|
-
*AsposePdfCloud::PdfApi* | [**get_redaction_annotation**](docs/PdfApi.md#get_redaction_annotation) | **GET** /pdf/\{name}/annotations/redaction/\{annotationId} | Read document page redaction annotation by ID.
|
256
|
-
*AsposePdfCloud::PdfApi* | [**get_screen_annotation**](docs/PdfApi.md#get_screen_annotation) | **GET** /pdf/\{name}/annotations/screen/\{annotationId} | Read document page screen annotation by ID.
|
257
|
-
*AsposePdfCloud::PdfApi* | [**get_screen_annotation_data**](docs/PdfApi.md#get_screen_annotation_data) | **GET** /pdf/\{name}/annotations/screen/\{annotationId}/data | Read document page screen annotation by ID.
|
258
|
-
*AsposePdfCloud::PdfApi* | [**get_signature_field**](docs/PdfApi.md#get_signature_field) | **GET** /pdf/\{name}/fields/signature/\{fieldName} | Read document signature field by name.
|
259
|
-
*AsposePdfCloud::PdfApi* | [**get_sound_annotation**](docs/PdfApi.md#get_sound_annotation) | **GET** /pdf/\{name}/annotations/sound/\{annotationId} | Read document page sound annotation by ID.
|
260
|
-
*AsposePdfCloud::PdfApi* | [**get_sound_annotation_data**](docs/PdfApi.md#get_sound_annotation_data) | **GET** /pdf/\{name}/annotations/sound/\{annotationId}/data | Read document page sound annotation by ID.
|
261
|
-
*AsposePdfCloud::PdfApi* | [**get_square_annotation**](docs/PdfApi.md#get_square_annotation) | **GET** /pdf/\{name}/annotations/square/\{annotationId} | Read document page square annotation by ID.
|
262
|
-
*AsposePdfCloud::PdfApi* | [**get_squiggly_annotation**](docs/PdfApi.md#get_squiggly_annotation) | **GET** /pdf/\{name}/annotations/squiggly/\{annotationId} | Read document page squiggly annotation by ID.
|
263
|
-
*AsposePdfCloud::PdfApi* | [**get_stamp_annotation**](docs/PdfApi.md#get_stamp_annotation) | **GET** /pdf/\{name}/annotations/stamp/\{annotationId} | Read document page stamp annotation by ID.
|
264
|
-
*AsposePdfCloud::PdfApi* | [**get_stamp_annotation_data**](docs/PdfApi.md#get_stamp_annotation_data) | **GET** /pdf/\{name}/annotations/stamp/\{annotationId}/data | Read document page stamp annotation by ID.
|
265
|
-
*AsposePdfCloud::PdfApi* | [**get_strike_out_annotation**](docs/PdfApi.md#get_strike_out_annotation) | **GET** /pdf/\{name}/annotations/strikeout/\{annotationId} | Read document page StrikeOut annotation by ID.
|
266
|
-
*AsposePdfCloud::PdfApi* | [**get_svg_in_storage_to_pdf**](docs/PdfApi.md#get_svg_in_storage_to_pdf) | **GET** /pdf/create/svg | Convert SVG file (located on storage) to PDF format and return resulting file in response.
|
267
|
-
*AsposePdfCloud::PdfApi* | [**get_table**](docs/PdfApi.md#get_table) | **GET** /pdf/\{name}/tables/\{tableId} | Read document page table by ID.
|
268
|
-
*AsposePdfCloud::PdfApi* | [**get_te_x_in_storage_to_pdf**](docs/PdfApi.md#get_te_x_in_storage_to_pdf) | **GET** /pdf/create/tex | Convert TeX file (located on storage) to PDF format and return resulting file in response.
|
269
|
-
*AsposePdfCloud::PdfApi* | [**get_text**](docs/PdfApi.md#get_text) | **GET** /pdf/\{name}/text | Read document text.
|
270
|
-
*AsposePdfCloud::PdfApi* | [**get_text_annotation**](docs/PdfApi.md#get_text_annotation) | **GET** /pdf/\{name}/annotations/text/\{annotationId} | Read document page text annotation by ID.
|
271
|
-
*AsposePdfCloud::PdfApi* | [**get_text_box_field**](docs/PdfApi.md#get_text_box_field) | **GET** /pdf/\{name}/fields/textbox/\{fieldName} | Read document text box field by name.
|
272
|
-
*AsposePdfCloud::PdfApi* | [**get_underline_annotation**](docs/PdfApi.md#get_underline_annotation) | **GET** /pdf/\{name}/annotations/underline/\{annotationId} | Read document page underline annotation by ID.
|
273
|
-
*AsposePdfCloud::PdfApi* | [**get_verify_signature**](docs/PdfApi.md#get_verify_signature) | **GET** /pdf/\{name}/verifySignature | Verify signature document.
|
274
|
-
*AsposePdfCloud::PdfApi* | [**get_web_in_storage_to_pdf**](docs/PdfApi.md#get_web_in_storage_to_pdf) | **GET** /pdf/create/web | Convert web page to PDF format and return resulting file in response.
|
275
|
-
*AsposePdfCloud::PdfApi* | [**get_words_per_page**](docs/PdfApi.md#get_words_per_page) | **GET** /pdf/\{name}/pages/wordCount | Get number of words per document page.
|
276
|
-
*AsposePdfCloud::PdfApi* | [**get_xfa_pdf_in_storage_to_acro_form**](docs/PdfApi.md#get_xfa_pdf_in_storage_to_acro_form) | **GET** /pdf/\{name}/convert/xfatoacroform | Converts PDF document which contains XFA form (located on storage) to PDF with AcroForm and returns resulting file response content
|
277
|
-
*AsposePdfCloud::PdfApi* | [**get_xml_in_storage_to_pdf**](docs/PdfApi.md#get_xml_in_storage_to_pdf) | **GET** /pdf/create/xml | Convert XML file (located on storage) to PDF format and return resulting file in response.
|
278
|
-
*AsposePdfCloud::PdfApi* | [**get_xps_in_storage_to_pdf**](docs/PdfApi.md#get_xps_in_storage_to_pdf) | **GET** /pdf/create/xps | Convert XPS file (located on storage) to PDF format and return resulting file in response.
|
279
|
-
*AsposePdfCloud::PdfApi* | [**get_xsl_fo_in_storage_to_pdf**](docs/PdfApi.md#get_xsl_fo_in_storage_to_pdf) | **GET** /pdf/create/xslfo | Convert XslFo file (located on storage) to PDF format and return resulting file in response.
|
280
|
-
*AsposePdfCloud::PdfApi* | [**move_file**](docs/PdfApi.md#move_file) | **PUT** /pdf/storage/file/move/\{srcPath} | Move file
|
281
|
-
*AsposePdfCloud::PdfApi* | [**move_folder**](docs/PdfApi.md#move_folder) | **PUT** /pdf/storage/folder/move/\{srcPath} | Move folder
|
282
|
-
*AsposePdfCloud::PdfApi* | [**object_exists**](docs/PdfApi.md#object_exists) | **GET** /pdf/storage/exist/\{path} | Check if file or folder exists
|
283
|
-
*AsposePdfCloud::PdfApi* | [**post_append_document**](docs/PdfApi.md#post_append_document) | **POST** /pdf/\{name}/appendDocument | Append document to existing one.
|
284
|
-
*AsposePdfCloud::PdfApi* | [**post_bookmark**](docs/PdfApi.md#post_bookmark) | **POST** /pdf/\{name}/bookmarks/bookmark/\{bookmarkPath} | Add document bookmarks.
|
285
|
-
*AsposePdfCloud::PdfApi* | [**post_change_password_document_in_storage**](docs/PdfApi.md#post_change_password_document_in_storage) | **POST** /pdf/\{name}/changepassword | Change document password in storage.
|
286
|
-
*AsposePdfCloud::PdfApi* | [**post_check_box_fields**](docs/PdfApi.md#post_check_box_fields) | **POST** /pdf/\{name}/fields/checkbox | Add document checkbox fields.
|
287
|
-
*AsposePdfCloud::PdfApi* | [**post_combo_box_fields**](docs/PdfApi.md#post_combo_box_fields) | **POST** /pdf/\{name}/fields/combobox | Add document combobox fields.
|
288
|
-
*AsposePdfCloud::PdfApi* | [**post_create_document**](docs/PdfApi.md#post_create_document) | **POST** /pdf/\{name} | Create empty document.
|
289
|
-
*AsposePdfCloud::PdfApi* | [**post_create_field**](docs/PdfApi.md#post_create_field) | **POST** /pdf/\{name}/fields | Create field.
|
290
|
-
*AsposePdfCloud::PdfApi* | [**post_decrypt_document_in_storage**](docs/PdfApi.md#post_decrypt_document_in_storage) | **POST** /pdf/\{name}/decrypt | Decrypt document in storage.
|
291
|
-
*AsposePdfCloud::PdfApi* | [**post_document_image_footer**](docs/PdfApi.md#post_document_image_footer) | **POST** /pdf/\{name}/footer/image | Add document image footer.
|
292
|
-
*AsposePdfCloud::PdfApi* | [**post_document_image_header**](docs/PdfApi.md#post_document_image_header) | **POST** /pdf/\{name}/header/image | Add document image header.
|
293
|
-
*AsposePdfCloud::PdfApi* | [**post_document_page_number_stamps**](docs/PdfApi.md#post_document_page_number_stamps) | **POST** /pdf/\{name}/stamps/pagenumber | Add document page number stamps.
|
294
|
-
*AsposePdfCloud::PdfApi* | [**post_document_text_footer**](docs/PdfApi.md#post_document_text_footer) | **POST** /pdf/\{name}/footer/text | Add document text footer.
|
295
|
-
*AsposePdfCloud::PdfApi* | [**post_document_text_header**](docs/PdfApi.md#post_document_text_header) | **POST** /pdf/\{name}/header/text | Add document text header.
|
296
|
-
*AsposePdfCloud::PdfApi* | [**post_document_text_replace**](docs/PdfApi.md#post_document_text_replace) | **POST** /pdf/\{name}/text/replace | Document's replace text method.
|
297
|
-
*AsposePdfCloud::PdfApi* | [**post_encrypt_document_in_storage**](docs/PdfApi.md#post_encrypt_document_in_storage) | **POST** /pdf/\{name}/encrypt | Encrypt document in storage.
|
298
|
-
*AsposePdfCloud::PdfApi* | [**post_flatten_document**](docs/PdfApi.md#post_flatten_document) | **POST** /pdf/\{name}/flatten | Flatten the document.
|
299
|
-
*AsposePdfCloud::PdfApi* | [**post_import_fields_from_fdf**](docs/PdfApi.md#post_import_fields_from_fdf) | **POST** /pdf/\{name}/import/fdf | Update fields from FDF file in request.
|
300
|
-
*AsposePdfCloud::PdfApi* | [**post_import_fields_from_xfdf**](docs/PdfApi.md#post_import_fields_from_xfdf) | **POST** /pdf/\{name}/import/xfdf | Update fields from XFDF file in request.
|
301
|
-
*AsposePdfCloud::PdfApi* | [**post_import_fields_from_xml**](docs/PdfApi.md#post_import_fields_from_xml) | **POST** /pdf/\{name}/import/xml | Update fields from XML file in request.
|
302
|
-
*AsposePdfCloud::PdfApi* | [**post_insert_image**](docs/PdfApi.md#post_insert_image) | **POST** /pdf/\{name}/pages/\{pageNumber}/images | Insert image to document page.
|
303
|
-
*AsposePdfCloud::PdfApi* | [**post_list_box_fields**](docs/PdfApi.md#post_list_box_fields) | **POST** /pdf/\{name}/fields/listbox | Add document listbox fields.
|
304
|
-
*AsposePdfCloud::PdfApi* | [**post_move_page**](docs/PdfApi.md#post_move_page) | **POST** /pdf/\{name}/pages/\{pageNumber}/movePage | Move page to new position.
|
305
|
-
*AsposePdfCloud::PdfApi* | [**post_optimize_document**](docs/PdfApi.md#post_optimize_document) | **POST** /pdf/\{name}/optimize | Optimize document.
|
306
|
-
*AsposePdfCloud::PdfApi* | [**post_page_caret_annotations**](docs/PdfApi.md#post_page_caret_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/caret | Add document page caret annotations.
|
307
|
-
*AsposePdfCloud::PdfApi* | [**post_page_certify**](docs/PdfApi.md#post_page_certify) | **POST** /pdf/\{name}/pages/\{pageNumber}/certify | Certify document page.
|
308
|
-
*AsposePdfCloud::PdfApi* | [**post_page_circle_annotations**](docs/PdfApi.md#post_page_circle_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/circle | Add document page circle annotations.
|
309
|
-
*AsposePdfCloud::PdfApi* | [**post_page_file_attachment_annotations**](docs/PdfApi.md#post_page_file_attachment_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/fileattachment | Add document page FileAttachment annotations.
|
310
|
-
*AsposePdfCloud::PdfApi* | [**post_page_free_text_annotations**](docs/PdfApi.md#post_page_free_text_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/freetext | Add document page free text annotations.
|
311
|
-
*AsposePdfCloud::PdfApi* | [**post_page_highlight_annotations**](docs/PdfApi.md#post_page_highlight_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/highlight | Add document page highlight annotations.
|
312
|
-
*AsposePdfCloud::PdfApi* | [**post_page_image_stamps**](docs/PdfApi.md#post_page_image_stamps) | **POST** /pdf/\{name}/pages/\{pageNumber}/stamps/image | Add document page image stamps.
|
313
|
-
*AsposePdfCloud::PdfApi* | [**post_page_ink_annotations**](docs/PdfApi.md#post_page_ink_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/ink | Add document page ink annotations.
|
314
|
-
*AsposePdfCloud::PdfApi* | [**post_page_line_annotations**](docs/PdfApi.md#post_page_line_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/line | Add document page line annotations.
|
315
|
-
*AsposePdfCloud::PdfApi* | [**post_page_link_annotations**](docs/PdfApi.md#post_page_link_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/links | Add document page link annotations.
|
316
|
-
*AsposePdfCloud::PdfApi* | [**post_page_movie_annotations**](docs/PdfApi.md#post_page_movie_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/movie | Add document page movie annotations.
|
317
|
-
*AsposePdfCloud::PdfApi* | [**post_page_pdf_page_stamps**](docs/PdfApi.md#post_page_pdf_page_stamps) | **POST** /pdf/\{name}/pages/\{pageNumber}/stamps/pdfpage | Add document pdf page stamps.
|
318
|
-
*AsposePdfCloud::PdfApi* | [**post_page_poly_line_annotations**](docs/PdfApi.md#post_page_poly_line_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/polyline | Add document page polyline annotations.
|
319
|
-
*AsposePdfCloud::PdfApi* | [**post_page_polygon_annotations**](docs/PdfApi.md#post_page_polygon_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/polygon | Add document page polygon annotations.
|
320
|
-
*AsposePdfCloud::PdfApi* | [**post_page_redaction_annotations**](docs/PdfApi.md#post_page_redaction_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/redaction | Add document page redaction annotations.
|
321
|
-
*AsposePdfCloud::PdfApi* | [**post_page_screen_annotations**](docs/PdfApi.md#post_page_screen_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/screen | Add document page screen annotations.
|
322
|
-
*AsposePdfCloud::PdfApi* | [**post_page_sound_annotations**](docs/PdfApi.md#post_page_sound_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/sound | Add document page sound annotations.
|
323
|
-
*AsposePdfCloud::PdfApi* | [**post_page_square_annotations**](docs/PdfApi.md#post_page_square_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/square | Add document page square annotations.
|
324
|
-
*AsposePdfCloud::PdfApi* | [**post_page_squiggly_annotations**](docs/PdfApi.md#post_page_squiggly_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/squiggly | Add document page squiggly annotations.
|
325
|
-
*AsposePdfCloud::PdfApi* | [**post_page_stamp_annotations**](docs/PdfApi.md#post_page_stamp_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/stamp | Add document page stamp annotations.
|
326
|
-
*AsposePdfCloud::PdfApi* | [**post_page_strike_out_annotations**](docs/PdfApi.md#post_page_strike_out_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/strikeout | Add document page StrikeOut annotations.
|
327
|
-
*AsposePdfCloud::PdfApi* | [**post_page_tables**](docs/PdfApi.md#post_page_tables) | **POST** /pdf/\{name}/pages/\{pageNumber}/tables | Add document page tables.
|
328
|
-
*AsposePdfCloud::PdfApi* | [**post_page_text_annotations**](docs/PdfApi.md#post_page_text_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/text | Add document page text annotations.
|
329
|
-
*AsposePdfCloud::PdfApi* | [**post_page_text_replace**](docs/PdfApi.md#post_page_text_replace) | **POST** /pdf/\{name}/pages/\{pageNumber}/text/replace | Page's replace text method.
|
330
|
-
*AsposePdfCloud::PdfApi* | [**post_page_text_stamps**](docs/PdfApi.md#post_page_text_stamps) | **POST** /pdf/\{name}/pages/\{pageNumber}/stamps/text | Add document page text stamps.
|
331
|
-
*AsposePdfCloud::PdfApi* | [**post_page_underline_annotations**](docs/PdfApi.md#post_page_underline_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/underline | Add document page underline annotations.
|
332
|
-
*AsposePdfCloud::PdfApi* | [**post_popup_annotation**](docs/PdfApi.md#post_popup_annotation) | **POST** /pdf/\{name}/annotations/\{annotationId}/popup | Add document popup annotations.
|
333
|
-
*AsposePdfCloud::PdfApi* | [**post_radio_button_fields**](docs/PdfApi.md#post_radio_button_fields) | **POST** /pdf/\{name}/fields/radiobutton | Add document RadioButton fields.
|
334
|
-
*AsposePdfCloud::PdfApi* | [**post_sign_document**](docs/PdfApi.md#post_sign_document) | **POST** /pdf/\{name}/sign | Sign document.
|
335
|
-
*AsposePdfCloud::PdfApi* | [**post_sign_page**](docs/PdfApi.md#post_sign_page) | **POST** /pdf/\{name}/pages/\{pageNumber}/sign | Sign page.
|
336
|
-
*AsposePdfCloud::PdfApi* | [**post_signature_field**](docs/PdfApi.md#post_signature_field) | **POST** /pdf/\{name}/fields/signature | Add document signature field.
|
337
|
-
*AsposePdfCloud::PdfApi* | [**post_split_document**](docs/PdfApi.md#post_split_document) | **POST** /pdf/\{name}/split | Split document to parts.
|
338
|
-
*AsposePdfCloud::PdfApi* | [**post_split_range_pdf_document**](docs/PdfApi.md#post_split_range_pdf_document) | **POST** /pdf/\{name}/splitrangepdf | Split document into ranges.
|
339
|
-
*AsposePdfCloud::PdfApi* | [**post_text_box_fields**](docs/PdfApi.md#post_text_box_fields) | **POST** /pdf/\{name}/fields/textbox | Add document text box fields.
|
340
|
-
*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.
|
341
|
-
*AsposePdfCloud::PdfApi* | [**put_add_text**](docs/PdfApi.md#put_add_text) | **PUT** /pdf/\{name}/pages/\{pageNumber}/text | Add text to PDF document page.
|
342
|
-
*AsposePdfCloud::PdfApi* | [**put_annotations_flatten**](docs/PdfApi.md#put_annotations_flatten) | **PUT** /pdf/\{name}/annotations/flatten | Flattens the annotations of the specified types
|
343
|
-
*AsposePdfCloud::PdfApi* | [**put_bookmark**](docs/PdfApi.md#put_bookmark) | **PUT** /pdf/\{name}/bookmarks/bookmark/\{bookmarkPath} | Update document bookmark.
|
344
|
-
*AsposePdfCloud::PdfApi* | [**put_caret_annotation**](docs/PdfApi.md#put_caret_annotation) | **PUT** /pdf/\{name}/annotations/caret/\{annotationId} | Replace document caret annotation
|
345
|
-
*AsposePdfCloud::PdfApi* | [**put_change_password_document**](docs/PdfApi.md#put_change_password_document) | **PUT** /pdf/changepassword | Change document password from content.
|
346
|
-
*AsposePdfCloud::PdfApi* | [**put_check_box_field**](docs/PdfApi.md#put_check_box_field) | **PUT** /pdf/\{name}/fields/checkbox/\{fieldName} | Replace document checkbox field
|
347
|
-
*AsposePdfCloud::PdfApi* | [**put_circle_annotation**](docs/PdfApi.md#put_circle_annotation) | **PUT** /pdf/\{name}/annotations/circle/\{annotationId} | Replace document circle annotation
|
348
|
-
*AsposePdfCloud::PdfApi* | [**put_combo_box_field**](docs/PdfApi.md#put_combo_box_field) | **PUT** /pdf/\{name}/fields/combobox/\{fieldName} | Replace document combobox field
|
349
|
-
*AsposePdfCloud::PdfApi* | [**put_create_document**](docs/PdfApi.md#put_create_document) | **PUT** /pdf/\{name} | Create empty document.
|
350
|
-
*AsposePdfCloud::PdfApi* | [**put_decrypt_document**](docs/PdfApi.md#put_decrypt_document) | **PUT** /pdf/decrypt | Decrypt document from content.
|
351
|
-
*AsposePdfCloud::PdfApi* | [**put_document_display_properties**](docs/PdfApi.md#put_document_display_properties) | **PUT** /pdf/\{name}/displayproperties | Update document display properties.
|
352
|
-
*AsposePdfCloud::PdfApi* | [**put_encrypt_document**](docs/PdfApi.md#put_encrypt_document) | **PUT** /pdf/encrypt | Encrypt document from content.
|
353
|
-
*AsposePdfCloud::PdfApi* | [**put_epub_in_storage_to_pdf**](docs/PdfApi.md#put_epub_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/epub | Convert EPUB file (located on storage) to PDF format and upload resulting file to storage.
|
354
|
-
*AsposePdfCloud::PdfApi* | [**put_export_fields_from_pdf_to_fdf_in_storage**](docs/PdfApi.md#put_export_fields_from_pdf_to_fdf_in_storage) | **PUT** /pdf/\{name}/export/fdf | Export fields from from PDF in storage to FDF file in storage.
|
355
|
-
*AsposePdfCloud::PdfApi* | [**put_export_fields_from_pdf_to_xfdf_in_storage**](docs/PdfApi.md#put_export_fields_from_pdf_to_xfdf_in_storage) | **PUT** /pdf/\{name}/export/xfdf | Export fields from from PDF in storage to XFDF file in storage.
|
356
|
-
*AsposePdfCloud::PdfApi* | [**put_export_fields_from_pdf_to_xml_in_storage**](docs/PdfApi.md#put_export_fields_from_pdf_to_xml_in_storage) | **PUT** /pdf/\{name}/export/xml | Export fields from from PDF in storage to XML file in storage.
|
357
|
-
*AsposePdfCloud::PdfApi* | [**put_fields_flatten**](docs/PdfApi.md#put_fields_flatten) | **PUT** /pdf/\{name}/fields/flatten | Flatten form fields in document.
|
358
|
-
*AsposePdfCloud::PdfApi* | [**put_file_attachment_annotation**](docs/PdfApi.md#put_file_attachment_annotation) | **PUT** /pdf/\{name}/annotations/fileattachment/\{annotationId} | Replace document FileAttachment annotation
|
359
|
-
*AsposePdfCloud::PdfApi* | [**put_file_attachment_annotation_data_extract**](docs/PdfApi.md#put_file_attachment_annotation_data_extract) | **PUT** /pdf/\{name}/annotations/fileattachment/\{annotationId}/data/extract | Extract document FileAttachment annotation content to storage
|
360
|
-
*AsposePdfCloud::PdfApi* | [**put_free_text_annotation**](docs/PdfApi.md#put_free_text_annotation) | **PUT** /pdf/\{name}/annotations/freetext/\{annotationId} | Replace document free text annotation
|
361
|
-
*AsposePdfCloud::PdfApi* | [**put_highlight_annotation**](docs/PdfApi.md#put_highlight_annotation) | **PUT** /pdf/\{name}/annotations/highlight/\{annotationId} | Replace document highlight annotation
|
362
|
-
*AsposePdfCloud::PdfApi* | [**put_html_in_storage_to_pdf**](docs/PdfApi.md#put_html_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/html | Convert HTML file (located on storage) to PDF format and upload resulting file to storage.
|
363
|
-
*AsposePdfCloud::PdfApi* | [**put_image_extract_as_gif**](docs/PdfApi.md#put_image_extract_as_gif) | **PUT** /pdf/\{name}/images/\{imageId}/extract/gif | Extract document image in GIF format to folder
|
364
|
-
*AsposePdfCloud::PdfApi* | [**put_image_extract_as_jpeg**](docs/PdfApi.md#put_image_extract_as_jpeg) | **PUT** /pdf/\{name}/images/\{imageId}/extract/jpeg | Extract document image in JPEG format to folder
|
365
|
-
*AsposePdfCloud::PdfApi* | [**put_image_extract_as_png**](docs/PdfApi.md#put_image_extract_as_png) | **PUT** /pdf/\{name}/images/\{imageId}/extract/png | Extract document image in PNG format to folder
|
366
|
-
*AsposePdfCloud::PdfApi* | [**put_image_extract_as_tiff**](docs/PdfApi.md#put_image_extract_as_tiff) | **PUT** /pdf/\{name}/images/\{imageId}/extract/tiff | Extract document image in TIFF format to folder
|
367
|
-
*AsposePdfCloud::PdfApi* | [**put_image_in_storage_to_pdf**](docs/PdfApi.md#put_image_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/images | Convert image file (located on storage) to PDF format and upload resulting file to storage.
|
368
|
-
*AsposePdfCloud::PdfApi* | [**put_images_extract_as_gif**](docs/PdfApi.md#put_images_extract_as_gif) | **PUT** /pdf/\{name}/pages/\{pageNumber}/images/extract/gif | Extract document images in GIF format to folder.
|
369
|
-
*AsposePdfCloud::PdfApi* | [**put_images_extract_as_jpeg**](docs/PdfApi.md#put_images_extract_as_jpeg) | **PUT** /pdf/\{name}/pages/\{pageNumber}/images/extract/jpeg | Extract document images in JPEG format to folder.
|
370
|
-
*AsposePdfCloud::PdfApi* | [**put_images_extract_as_png**](docs/PdfApi.md#put_images_extract_as_png) | **PUT** /pdf/\{name}/pages/\{pageNumber}/images/extract/png | Extract document images in PNG format to folder.
|
371
|
-
*AsposePdfCloud::PdfApi* | [**put_images_extract_as_tiff**](docs/PdfApi.md#put_images_extract_as_tiff) | **PUT** /pdf/\{name}/pages/\{pageNumber}/images/extract/tiff | Extract document images in TIFF format to folder.
|
372
|
-
*AsposePdfCloud::PdfApi* | [**put_import_fields_from_fdf_in_storage**](docs/PdfApi.md#put_import_fields_from_fdf_in_storage) | **PUT** /pdf/\{name}/import/fdf | Update fields from FDF file in storage.
|
373
|
-
*AsposePdfCloud::PdfApi* | [**put_import_fields_from_xfdf_in_storage**](docs/PdfApi.md#put_import_fields_from_xfdf_in_storage) | **PUT** /pdf/\{name}/import/xfdf | Update fields from XFDF file in storage.
|
374
|
-
*AsposePdfCloud::PdfApi* | [**put_import_fields_from_xml_in_storage**](docs/PdfApi.md#put_import_fields_from_xml_in_storage) | **PUT** /pdf/\{name}/import/xml | Update fields from XML file in storage.
|
375
|
-
*AsposePdfCloud::PdfApi* | [**put_ink_annotation**](docs/PdfApi.md#put_ink_annotation) | **PUT** /pdf/\{name}/annotations/ink/\{annotationId} | Replace document ink annotation
|
376
|
-
*AsposePdfCloud::PdfApi* | [**put_line_annotation**](docs/PdfApi.md#put_line_annotation) | **PUT** /pdf/\{name}/annotations/line/\{annotationId} | Replace document line annotation
|
377
|
-
*AsposePdfCloud::PdfApi* | [**put_link_annotation**](docs/PdfApi.md#put_link_annotation) | **PUT** /pdf/\{name}/links/\{linkId} | Replace document page link annotations
|
378
|
-
*AsposePdfCloud::PdfApi* | [**put_list_box_field**](docs/PdfApi.md#put_list_box_field) | **PUT** /pdf/\{name}/fields/listbox/\{fieldName} | Replace document listbox field
|
379
|
-
*AsposePdfCloud::PdfApi* | [**put_markdown_in_storage_to_pdf**](docs/PdfApi.md#put_markdown_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/markdown | Convert MD file (located on storage) to PDF format and upload resulting file to storage.
|
380
|
-
*AsposePdfCloud::PdfApi* | [**put_merge_documents**](docs/PdfApi.md#put_merge_documents) | **PUT** /pdf/\{name}/merge | Merge a list of documents.
|
381
|
-
*AsposePdfCloud::PdfApi* | [**put_mht_in_storage_to_pdf**](docs/PdfApi.md#put_mht_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/mht | Convert MHT file (located on storage) to PDF format and upload resulting file to storage.
|
382
|
-
*AsposePdfCloud::PdfApi* | [**put_movie_annotation**](docs/PdfApi.md#put_movie_annotation) | **PUT** /pdf/\{name}/annotations/movie/\{annotationId} | Replace document movie annotation
|
383
|
-
*AsposePdfCloud::PdfApi* | [**put_page_add_stamp**](docs/PdfApi.md#put_page_add_stamp) | **PUT** /pdf/\{name}/pages/\{pageNumber}/stamp | Add page stamp.
|
384
|
-
*AsposePdfCloud::PdfApi* | [**put_page_convert_to_bmp**](docs/PdfApi.md#put_page_convert_to_bmp) | **PUT** /pdf/\{name}/pages/\{pageNumber}/convert/bmp | Convert document page to bmp image and upload resulting file to storage.
|
385
|
-
*AsposePdfCloud::PdfApi* | [**put_page_convert_to_emf**](docs/PdfApi.md#put_page_convert_to_emf) | **PUT** /pdf/\{name}/pages/\{pageNumber}/convert/emf | Convert document page to emf image and upload resulting file to storage.
|
386
|
-
*AsposePdfCloud::PdfApi* | [**put_page_convert_to_gif**](docs/PdfApi.md#put_page_convert_to_gif) | **PUT** /pdf/\{name}/pages/\{pageNumber}/convert/gif | Convert document page to gif image and upload resulting file to storage.
|
387
|
-
*AsposePdfCloud::PdfApi* | [**put_page_convert_to_jpeg**](docs/PdfApi.md#put_page_convert_to_jpeg) | **PUT** /pdf/\{name}/pages/\{pageNumber}/convert/jpeg | Convert document page to Jpeg image and upload resulting file to storage.
|
388
|
-
*AsposePdfCloud::PdfApi* | [**put_page_convert_to_png**](docs/PdfApi.md#put_page_convert_to_png) | **PUT** /pdf/\{name}/pages/\{pageNumber}/convert/png | Convert document page to png image and upload resulting file to storage.
|
389
|
-
*AsposePdfCloud::PdfApi* | [**put_page_convert_to_tiff**](docs/PdfApi.md#put_page_convert_to_tiff) | **PUT** /pdf/\{name}/pages/\{pageNumber}/convert/tiff | Convert document page to Tiff image and upload resulting file to storage.
|
390
|
-
*AsposePdfCloud::PdfApi* | [**put_pcl_in_storage_to_pdf**](docs/PdfApi.md#put_pcl_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/pcl | Convert PCL file (located on storage) to PDF format and upload resulting file to storage.
|
391
|
-
*AsposePdfCloud::PdfApi* | [**put_pdf_a_in_storage_to_pdf**](docs/PdfApi.md#put_pdf_a_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/pdfa | Convert PDFA file (located on storage) to PDF format and upload resulting file to storage.
|
392
|
-
*AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_doc**](docs/PdfApi.md#put_pdf_in_request_to_doc) | **PUT** /pdf/convert/doc | Converts PDF document (in request content) to DOC format and uploads resulting file to storage.
|
393
|
-
*AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_epub**](docs/PdfApi.md#put_pdf_in_request_to_epub) | **PUT** /pdf/convert/epub | Converts PDF document (in request content) to EPUB format and uploads resulting file to storage.
|
394
|
-
*AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_html**](docs/PdfApi.md#put_pdf_in_request_to_html) | **PUT** /pdf/convert/html | Converts PDF document (in request content) to Html format and uploads resulting file to storage.
|
395
|
-
*AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_mobi_xml**](docs/PdfApi.md#put_pdf_in_request_to_mobi_xml) | **PUT** /pdf/convert/mobixml | Converts PDF document (in request content) to MOBIXML format and uploads resulting ZIP archive file to storage.
|
396
|
-
*AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_pdf_a**](docs/PdfApi.md#put_pdf_in_request_to_pdf_a) | **PUT** /pdf/convert/pdfa | Converts PDF document (in request content) to PdfA format and uploads resulting file to storage.
|
397
|
-
*AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_pptx**](docs/PdfApi.md#put_pdf_in_request_to_pptx) | **PUT** /pdf/convert/pptx | Converts PDF document (in request content) to PPTX format and uploads resulting file to storage.
|
398
|
-
*AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_svg**](docs/PdfApi.md#put_pdf_in_request_to_svg) | **PUT** /pdf/convert/svg | Converts PDF document (in request content) to SVG format and uploads resulting file to storage.
|
399
|
-
*AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_te_x**](docs/PdfApi.md#put_pdf_in_request_to_te_x) | **PUT** /pdf/convert/tex | Converts PDF document (in request content) to TeX format and uploads resulting file to storage.
|
400
|
-
*AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_tiff**](docs/PdfApi.md#put_pdf_in_request_to_tiff) | **PUT** /pdf/convert/tiff | Converts PDF document (in request content) to TIFF format and uploads resulting file to storage.
|
401
|
-
*AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_xls**](docs/PdfApi.md#put_pdf_in_request_to_xls) | **PUT** /pdf/convert/xls | Converts PDF document (in request content) to XLS format and uploads resulting file to storage.
|
402
|
-
*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.
|
403
|
-
*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.
|
404
|
-
*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.
|
405
|
-
*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.
|
406
|
-
*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
|
407
|
-
*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
|
408
|
-
*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
|
409
|
-
*AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_pdf_a**](docs/PdfApi.md#put_pdf_in_storage_to_pdf_a) | **PUT** /pdf/\{name}/convert/pdfa | Converts PDF document (located on storage) to PdfA format and uploads resulting file to storage
|
410
|
-
*AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_pptx**](docs/PdfApi.md#put_pdf_in_storage_to_pptx) | **PUT** /pdf/\{name}/convert/pptx | Converts PDF document (located on storage) to PPTX format and uploads resulting file to storage
|
411
|
-
*AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_svg**](docs/PdfApi.md#put_pdf_in_storage_to_svg) | **PUT** /pdf/\{name}/convert/svg | Converts PDF document (located on storage) to SVG format and uploads resulting file to storage
|
412
|
-
*AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_te_x**](docs/PdfApi.md#put_pdf_in_storage_to_te_x) | **PUT** /pdf/\{name}/convert/tex | Converts PDF document (located on storage) to TeX format and uploads resulting file to storage
|
413
|
-
*AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_tiff**](docs/PdfApi.md#put_pdf_in_storage_to_tiff) | **PUT** /pdf/\{name}/convert/tiff | Converts PDF document (located on storage) to TIFF format and uploads resulting file to storage
|
414
|
-
*AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_xls**](docs/PdfApi.md#put_pdf_in_storage_to_xls) | **PUT** /pdf/\{name}/convert/xls | Converts PDF document (located on storage) to XLS format and uploads resulting file to storage
|
415
|
-
*AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_xlsx**](docs/PdfApi.md#put_pdf_in_storage_to_xlsx) | **PUT** /pdf/\{name}/convert/xlsx | Converts PDF document (located on storage) to XLSX format and uploads resulting file to storage
|
416
|
-
*AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_xml**](docs/PdfApi.md#put_pdf_in_storage_to_xml) | **PUT** /pdf/\{name}/convert/xml | Converts PDF document (located on storage) to XML format and uploads resulting file to storage
|
417
|
-
*AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_xps**](docs/PdfApi.md#put_pdf_in_storage_to_xps) | **PUT** /pdf/\{name}/convert/xps | Converts PDF document (located on storage) to XPS format and uploads resulting file to storage
|
418
|
-
*AsposePdfCloud::PdfApi* | [**put_poly_line_annotation**](docs/PdfApi.md#put_poly_line_annotation) | **PUT** /pdf/\{name}/annotations/polyline/\{annotationId} | Replace document polyline annotation
|
419
|
-
*AsposePdfCloud::PdfApi* | [**put_polygon_annotation**](docs/PdfApi.md#put_polygon_annotation) | **PUT** /pdf/\{name}/annotations/polygon/\{annotationId} | Replace document polygon annotation
|
420
|
-
*AsposePdfCloud::PdfApi* | [**put_popup_annotation**](docs/PdfApi.md#put_popup_annotation) | **PUT** /pdf/\{name}/annotations/popup/\{annotationId} | Replace document popup annotation
|
421
|
-
*AsposePdfCloud::PdfApi* | [**put_privileges**](docs/PdfApi.md#put_privileges) | **PUT** /pdf/\{name}/privileges | Update privilege document.
|
422
|
-
*AsposePdfCloud::PdfApi* | [**put_ps_in_storage_to_pdf**](docs/PdfApi.md#put_ps_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/ps | Convert PS file (located on storage) to PDF format and upload resulting file to storage.
|
423
|
-
*AsposePdfCloud::PdfApi* | [**put_radio_button_field**](docs/PdfApi.md#put_radio_button_field) | **PUT** /pdf/\{name}/fields/radiobutton/\{fieldName} | Replace document RadioButton field
|
424
|
-
*AsposePdfCloud::PdfApi* | [**put_redaction_annotation**](docs/PdfApi.md#put_redaction_annotation) | **PUT** /pdf/\{name}/annotations/redaction/\{annotationId} | Replace document redaction annotation
|
425
|
-
*AsposePdfCloud::PdfApi* | [**put_replace_image**](docs/PdfApi.md#put_replace_image) | **PUT** /pdf/\{name}/images/\{imageId} | Replace document image.
|
426
|
-
*AsposePdfCloud::PdfApi* | [**put_screen_annotation**](docs/PdfApi.md#put_screen_annotation) | **PUT** /pdf/\{name}/annotations/screen/\{annotationId} | Replace document screen annotation
|
427
|
-
*AsposePdfCloud::PdfApi* | [**put_screen_annotation_data_extract**](docs/PdfApi.md#put_screen_annotation_data_extract) | **PUT** /pdf/\{name}/annotations/screen/\{annotationId}/data/extract | Extract document screen annotation content to storage
|
428
|
-
*AsposePdfCloud::PdfApi* | [**put_searchable_document**](docs/PdfApi.md#put_searchable_document) | **PUT** /pdf/\{name}/ocr | Create searchable PDF document. Generate OCR layer for images in input PDF document.
|
429
|
-
*AsposePdfCloud::PdfApi* | [**put_set_property**](docs/PdfApi.md#put_set_property) | **PUT** /pdf/\{name}/documentproperties/\{propertyName} | Add/update document property.
|
430
|
-
*AsposePdfCloud::PdfApi* | [**put_signature_field**](docs/PdfApi.md#put_signature_field) | **PUT** /pdf/\{name}/fields/signature/\{fieldName} | Replace document signature field.
|
431
|
-
*AsposePdfCloud::PdfApi* | [**put_sound_annotation**](docs/PdfApi.md#put_sound_annotation) | **PUT** /pdf/\{name}/annotations/sound/\{annotationId} | Replace document sound annotation
|
432
|
-
*AsposePdfCloud::PdfApi* | [**put_sound_annotation_data_extract**](docs/PdfApi.md#put_sound_annotation_data_extract) | **PUT** /pdf/\{name}/annotations/sound/\{annotationId}/data/extract | Extract document sound annotation content to storage
|
433
|
-
*AsposePdfCloud::PdfApi* | [**put_square_annotation**](docs/PdfApi.md#put_square_annotation) | **PUT** /pdf/\{name}/annotations/square/\{annotationId} | Replace document square annotation
|
434
|
-
*AsposePdfCloud::PdfApi* | [**put_squiggly_annotation**](docs/PdfApi.md#put_squiggly_annotation) | **PUT** /pdf/\{name}/annotations/squiggly/\{annotationId} | Replace document squiggly annotation
|
435
|
-
*AsposePdfCloud::PdfApi* | [**put_stamp_annotation**](docs/PdfApi.md#put_stamp_annotation) | **PUT** /pdf/\{name}/annotations/stamp/\{annotationId} | Replace document stamp annotation
|
436
|
-
*AsposePdfCloud::PdfApi* | [**put_stamp_annotation_data_extract**](docs/PdfApi.md#put_stamp_annotation_data_extract) | **PUT** /pdf/\{name}/annotations/stamp/\{annotationId}/data/extract | Extract document stamp annotation content to storage
|
437
|
-
*AsposePdfCloud::PdfApi* | [**put_strike_out_annotation**](docs/PdfApi.md#put_strike_out_annotation) | **PUT** /pdf/\{name}/annotations/strikeout/\{annotationId} | Replace document StrikeOut annotation
|
438
|
-
*AsposePdfCloud::PdfApi* | [**put_svg_in_storage_to_pdf**](docs/PdfApi.md#put_svg_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/svg | Convert SVG file (located on storage) to PDF format and upload resulting file to storage.
|
439
|
-
*AsposePdfCloud::PdfApi* | [**put_table**](docs/PdfApi.md#put_table) | **PUT** /pdf/\{name}/tables/\{tableId} | Replace document page table.
|
440
|
-
*AsposePdfCloud::PdfApi* | [**put_te_x_in_storage_to_pdf**](docs/PdfApi.md#put_te_x_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/tex | Convert TeX file (located on storage) to PDF format and upload resulting file to storage.
|
441
|
-
*AsposePdfCloud::PdfApi* | [**put_text_annotation**](docs/PdfApi.md#put_text_annotation) | **PUT** /pdf/\{name}/annotations/text/\{annotationId} | Replace document text annotation
|
442
|
-
*AsposePdfCloud::PdfApi* | [**put_text_box_field**](docs/PdfApi.md#put_text_box_field) | **PUT** /pdf/\{name}/fields/textbox/\{fieldName} | Replace document text box field
|
443
|
-
*AsposePdfCloud::PdfApi* | [**put_underline_annotation**](docs/PdfApi.md#put_underline_annotation) | **PUT** /pdf/\{name}/annotations/underline/\{annotationId} | Replace document underline annotation
|
444
|
-
*AsposePdfCloud::PdfApi* | [**put_update_field**](docs/PdfApi.md#put_update_field) | **PUT** /pdf/\{name}/fields/\{fieldName} | Update field.
|
445
|
-
*AsposePdfCloud::PdfApi* | [**put_update_fields**](docs/PdfApi.md#put_update_fields) | **PUT** /pdf/\{name}/fields | Update fields.
|
446
|
-
*AsposePdfCloud::PdfApi* | [**put_web_in_storage_to_pdf**](docs/PdfApi.md#put_web_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/web | Convert web page to PDF format and upload resulting file to storage.
|
447
|
-
*AsposePdfCloud::PdfApi* | [**put_xfa_pdf_in_request_to_acro_form**](docs/PdfApi.md#put_xfa_pdf_in_request_to_acro_form) | **PUT** /pdf/convert/xfatoacroform | Converts PDF document which contains XFA form (in request content) to PDF with AcroForm and uploads resulting file to storage.
|
448
|
-
*AsposePdfCloud::PdfApi* | [**put_xfa_pdf_in_storage_to_acro_form**](docs/PdfApi.md#put_xfa_pdf_in_storage_to_acro_form) | **PUT** /pdf/\{name}/convert/xfatoacroform | Converts PDF document which contains XFA form (located on storage) to PDF with AcroForm and uploads resulting file to storage
|
449
|
-
*AsposePdfCloud::PdfApi* | [**put_xml_in_storage_to_pdf**](docs/PdfApi.md#put_xml_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/xml | Convert XML file (located on storage) to PDF format and upload resulting file to storage.
|
450
|
-
*AsposePdfCloud::PdfApi* | [**put_xps_in_storage_to_pdf**](docs/PdfApi.md#put_xps_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/xps | Convert XPS file (located on storage) to PDF format and upload resulting file to storage.
|
451
|
-
*AsposePdfCloud::PdfApi* | [**put_xsl_fo_in_storage_to_pdf**](docs/PdfApi.md#put_xsl_fo_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/xslfo | Convert XslFo file (located on storage) to PDF format and upload resulting file to storage.
|
452
|
-
*AsposePdfCloud::PdfApi* | [**storage_exists**](docs/PdfApi.md#storage_exists) | **GET** /pdf/storage/\{storageName}/exist | Check if storage exists
|
453
|
-
*AsposePdfCloud::PdfApi* | [**upload_file**](docs/PdfApi.md#upload_file) | **PUT** /pdf/storage/file/\{path} | Upload file
|
454
|
-
|
455
|
-
|
456
|
-
## Documentation for Models
|
457
|
-
|
458
|
-
- [AsposePdfCloud::AnnotationFlags](docs/AnnotationFlags.md)
|
459
|
-
- [AsposePdfCloud::AnnotationState](docs/AnnotationState.md)
|
460
|
-
- [AsposePdfCloud::AnnotationType](docs/AnnotationType.md)
|
461
|
-
- [AsposePdfCloud::AntialiasingProcessingType](docs/AntialiasingProcessingType.md)
|
462
|
-
- [AsposePdfCloud::AsposeResponse](docs/AsposeResponse.md)
|
463
|
-
- [AsposePdfCloud::Border](docs/Border.md)
|
464
|
-
- [AsposePdfCloud::BorderCornerStyle](docs/BorderCornerStyle.md)
|
465
|
-
- [AsposePdfCloud::BorderEffect](docs/BorderEffect.md)
|
466
|
-
- [AsposePdfCloud::BorderInfo](docs/BorderInfo.md)
|
467
|
-
- [AsposePdfCloud::BorderStyle](docs/BorderStyle.md)
|
468
|
-
- [AsposePdfCloud::BoxStyle](docs/BoxStyle.md)
|
469
|
-
- [AsposePdfCloud::CapStyle](docs/CapStyle.md)
|
470
|
-
- [AsposePdfCloud::CaptionPosition](docs/CaptionPosition.md)
|
471
|
-
- [AsposePdfCloud::CaretSymbol](docs/CaretSymbol.md)
|
472
|
-
- [AsposePdfCloud::Cell](docs/Cell.md)
|
473
|
-
- [AsposePdfCloud::CellRecognized](docs/CellRecognized.md)
|
474
|
-
- [AsposePdfCloud::Color](docs/Color.md)
|
475
|
-
- [AsposePdfCloud::ColorDepth](docs/ColorDepth.md)
|
476
|
-
- [AsposePdfCloud::ColumnAdjustment](docs/ColumnAdjustment.md)
|
477
|
-
- [AsposePdfCloud::CompressionType](docs/CompressionType.md)
|
478
|
-
- [AsposePdfCloud::CryptoAlgorithm](docs/CryptoAlgorithm.md)
|
479
|
-
- [AsposePdfCloud::Dash](docs/Dash.md)
|
480
|
-
- [AsposePdfCloud::DefaultPageConfig](docs/DefaultPageConfig.md)
|
481
|
-
- [AsposePdfCloud::Direction](docs/Direction.md)
|
482
|
-
- [AsposePdfCloud::DiscUsage](docs/DiscUsage.md)
|
483
|
-
- [AsposePdfCloud::DocFormat](docs/DocFormat.md)
|
484
|
-
- [AsposePdfCloud::DocMDPAccessPermissionType](docs/DocMDPAccessPermissionType.md)
|
485
|
-
- [AsposePdfCloud::DocRecognitionMode](docs/DocRecognitionMode.md)
|
486
|
-
- [AsposePdfCloud::DocumentConfig](docs/DocumentConfig.md)
|
487
|
-
- [AsposePdfCloud::DocumentPrivilege](docs/DocumentPrivilege.md)
|
488
|
-
- [AsposePdfCloud::EpubRecognitionMode](docs/EpubRecognitionMode.md)
|
489
|
-
- [AsposePdfCloud::Error](docs/Error.md)
|
490
|
-
- [AsposePdfCloud::ErrorDetails](docs/ErrorDetails.md)
|
491
|
-
- [AsposePdfCloud::FieldType](docs/FieldType.md)
|
492
|
-
- [AsposePdfCloud::FileIcon](docs/FileIcon.md)
|
493
|
-
- [AsposePdfCloud::FileVersions](docs/FileVersions.md)
|
494
|
-
- [AsposePdfCloud::FilesList](docs/FilesList.md)
|
495
|
-
- [AsposePdfCloud::FilesUploadResult](docs/FilesUploadResult.md)
|
496
|
-
- [AsposePdfCloud::FontEncodingRules](docs/FontEncodingRules.md)
|
497
|
-
- [AsposePdfCloud::FontSavingModes](docs/FontSavingModes.md)
|
498
|
-
- [AsposePdfCloud::FontStyles](docs/FontStyles.md)
|
499
|
-
- [AsposePdfCloud::FreeTextIntent](docs/FreeTextIntent.md)
|
500
|
-
- [AsposePdfCloud::GraphInfo](docs/GraphInfo.md)
|
501
|
-
- [AsposePdfCloud::HorizontalAlignment](docs/HorizontalAlignment.md)
|
502
|
-
- [AsposePdfCloud::HtmlDocumentType](docs/HtmlDocumentType.md)
|
503
|
-
- [AsposePdfCloud::HtmlMarkupGenerationModes](docs/HtmlMarkupGenerationModes.md)
|
504
|
-
- [AsposePdfCloud::ImageCompressionVersion](docs/ImageCompressionVersion.md)
|
505
|
-
- [AsposePdfCloud::ImageEncoding](docs/ImageEncoding.md)
|
506
|
-
- [AsposePdfCloud::ImageFragment](docs/ImageFragment.md)
|
507
|
-
- [AsposePdfCloud::ImageSrcType](docs/ImageSrcType.md)
|
508
|
-
- [AsposePdfCloud::ImageTemplate](docs/ImageTemplate.md)
|
509
|
-
- [AsposePdfCloud::ImageTemplatesRequest](docs/ImageTemplatesRequest.md)
|
510
|
-
- [AsposePdfCloud::Justification](docs/Justification.md)
|
511
|
-
- [AsposePdfCloud::LettersPositioningMethods](docs/LettersPositioningMethods.md)
|
512
|
-
- [AsposePdfCloud::LineEnding](docs/LineEnding.md)
|
513
|
-
- [AsposePdfCloud::LineIntent](docs/LineIntent.md)
|
514
|
-
- [AsposePdfCloud::LineSpacing](docs/LineSpacing.md)
|
515
|
-
- [AsposePdfCloud::Link](docs/Link.md)
|
516
|
-
- [AsposePdfCloud::LinkActionType](docs/LinkActionType.md)
|
517
|
-
- [AsposePdfCloud::LinkElement](docs/LinkElement.md)
|
518
|
-
- [AsposePdfCloud::LinkHighlightingMode](docs/LinkHighlightingMode.md)
|
519
|
-
- [AsposePdfCloud::MarginInfo](docs/MarginInfo.md)
|
520
|
-
- [AsposePdfCloud::MergeDocuments](docs/MergeDocuments.md)
|
521
|
-
- [AsposePdfCloud::ObjectExist](docs/ObjectExist.md)
|
522
|
-
- [AsposePdfCloud::OptimizeOptions](docs/OptimizeOptions.md)
|
523
|
-
- [AsposePdfCloud::Option](docs/Option.md)
|
524
|
-
- [AsposePdfCloud::OutputFormat](docs/OutputFormat.md)
|
525
|
-
- [AsposePdfCloud::PageLayout](docs/PageLayout.md)
|
526
|
-
- [AsposePdfCloud::PageMode](docs/PageMode.md)
|
527
|
-
- [AsposePdfCloud::PageRange](docs/PageRange.md)
|
528
|
-
- [AsposePdfCloud::PageWordCount](docs/PageWordCount.md)
|
529
|
-
- [AsposePdfCloud::Paragraph](docs/Paragraph.md)
|
530
|
-
- [AsposePdfCloud::PartsEmbeddingModes](docs/PartsEmbeddingModes.md)
|
531
|
-
- [AsposePdfCloud::PdfAType](docs/PdfAType.md)
|
532
|
-
- [AsposePdfCloud::PermissionsFlags](docs/PermissionsFlags.md)
|
533
|
-
- [AsposePdfCloud::Point](docs/Point.md)
|
534
|
-
- [AsposePdfCloud::PolyIntent](docs/PolyIntent.md)
|
535
|
-
- [AsposePdfCloud::Position](docs/Position.md)
|
536
|
-
- [AsposePdfCloud::RasterImagesSavingModes](docs/RasterImagesSavingModes.md)
|
537
|
-
- [AsposePdfCloud::Rectangle](docs/Rectangle.md)
|
538
|
-
- [AsposePdfCloud::Rotation](docs/Rotation.md)
|
539
|
-
- [AsposePdfCloud::Row](docs/Row.md)
|
540
|
-
- [AsposePdfCloud::RowRecognized](docs/RowRecognized.md)
|
541
|
-
- [AsposePdfCloud::Segment](docs/Segment.md)
|
542
|
-
- [AsposePdfCloud::ShapeType](docs/ShapeType.md)
|
543
|
-
- [AsposePdfCloud::Signature](docs/Signature.md)
|
544
|
-
- [AsposePdfCloud::SignatureCustomAppearance](docs/SignatureCustomAppearance.md)
|
545
|
-
- [AsposePdfCloud::SignatureType](docs/SignatureType.md)
|
546
|
-
- [AsposePdfCloud::SoundEncoding](docs/SoundEncoding.md)
|
547
|
-
- [AsposePdfCloud::SoundIcon](docs/SoundIcon.md)
|
548
|
-
- [AsposePdfCloud::SplitRangePdfOptions](docs/SplitRangePdfOptions.md)
|
549
|
-
- [AsposePdfCloud::SplitResult](docs/SplitResult.md)
|
550
|
-
- [AsposePdfCloud::Stamp](docs/Stamp.md)
|
551
|
-
- [AsposePdfCloud::StampIcon](docs/StampIcon.md)
|
552
|
-
- [AsposePdfCloud::StampType](docs/StampType.md)
|
553
|
-
- [AsposePdfCloud::StorageExist](docs/StorageExist.md)
|
554
|
-
- [AsposePdfCloud::StorageFile](docs/StorageFile.md)
|
555
|
-
- [AsposePdfCloud::TableBroken](docs/TableBroken.md)
|
556
|
-
- [AsposePdfCloud::TextHorizontalAlignment](docs/TextHorizontalAlignment.md)
|
557
|
-
- [AsposePdfCloud::TextIcon](docs/TextIcon.md)
|
558
|
-
- [AsposePdfCloud::TextLine](docs/TextLine.md)
|
559
|
-
- [AsposePdfCloud::TextRect](docs/TextRect.md)
|
560
|
-
- [AsposePdfCloud::TextRects](docs/TextRects.md)
|
561
|
-
- [AsposePdfCloud::TextReplace](docs/TextReplace.md)
|
562
|
-
- [AsposePdfCloud::TextReplaceListRequest](docs/TextReplaceListRequest.md)
|
563
|
-
- [AsposePdfCloud::TextState](docs/TextState.md)
|
564
|
-
- [AsposePdfCloud::TextStyle](docs/TextStyle.md)
|
565
|
-
- [AsposePdfCloud::TimestampSettings](docs/TimestampSettings.md)
|
566
|
-
- [AsposePdfCloud::VerticalAlignment](docs/VerticalAlignment.md)
|
567
|
-
- [AsposePdfCloud::WordCount](docs/WordCount.md)
|
568
|
-
- [AsposePdfCloud::WrapMode](docs/WrapMode.md)
|
569
|
-
- [AsposePdfCloud::Annotation](docs/Annotation.md)
|
570
|
-
- [AsposePdfCloud::AnnotationsInfo](docs/AnnotationsInfo.md)
|
571
|
-
- [AsposePdfCloud::AnnotationsInfoResponse](docs/AnnotationsInfoResponse.md)
|
572
|
-
- [AsposePdfCloud::Attachment](docs/Attachment.md)
|
573
|
-
- [AsposePdfCloud::AttachmentResponse](docs/AttachmentResponse.md)
|
574
|
-
- [AsposePdfCloud::Attachments](docs/Attachments.md)
|
575
|
-
- [AsposePdfCloud::AttachmentsResponse](docs/AttachmentsResponse.md)
|
576
|
-
- [AsposePdfCloud::Bookmark](docs/Bookmark.md)
|
577
|
-
- [AsposePdfCloud::BookmarkResponse](docs/BookmarkResponse.md)
|
578
|
-
- [AsposePdfCloud::Bookmarks](docs/Bookmarks.md)
|
579
|
-
- [AsposePdfCloud::BookmarksResponse](docs/BookmarksResponse.md)
|
580
|
-
- [AsposePdfCloud::CaretAnnotationResponse](docs/CaretAnnotationResponse.md)
|
581
|
-
- [AsposePdfCloud::CaretAnnotations](docs/CaretAnnotations.md)
|
582
|
-
- [AsposePdfCloud::CaretAnnotationsResponse](docs/CaretAnnotationsResponse.md)
|
583
|
-
- [AsposePdfCloud::CheckBoxFieldResponse](docs/CheckBoxFieldResponse.md)
|
584
|
-
- [AsposePdfCloud::CheckBoxFields](docs/CheckBoxFields.md)
|
585
|
-
- [AsposePdfCloud::CheckBoxFieldsResponse](docs/CheckBoxFieldsResponse.md)
|
586
|
-
- [AsposePdfCloud::CircleAnnotationResponse](docs/CircleAnnotationResponse.md)
|
587
|
-
- [AsposePdfCloud::CircleAnnotations](docs/CircleAnnotations.md)
|
588
|
-
- [AsposePdfCloud::CircleAnnotationsResponse](docs/CircleAnnotationsResponse.md)
|
589
|
-
- [AsposePdfCloud::ComboBoxFieldResponse](docs/ComboBoxFieldResponse.md)
|
590
|
-
- [AsposePdfCloud::ComboBoxFields](docs/ComboBoxFields.md)
|
591
|
-
- [AsposePdfCloud::ComboBoxFieldsResponse](docs/ComboBoxFieldsResponse.md)
|
592
|
-
- [AsposePdfCloud::DisplayProperties](docs/DisplayProperties.md)
|
593
|
-
- [AsposePdfCloud::DisplayPropertiesResponse](docs/DisplayPropertiesResponse.md)
|
594
|
-
- [AsposePdfCloud::Document](docs/Document.md)
|
595
|
-
- [AsposePdfCloud::DocumentPageResponse](docs/DocumentPageResponse.md)
|
596
|
-
- [AsposePdfCloud::DocumentPagesResponse](docs/DocumentPagesResponse.md)
|
597
|
-
- [AsposePdfCloud::DocumentProperties](docs/DocumentProperties.md)
|
598
|
-
- [AsposePdfCloud::DocumentPropertiesResponse](docs/DocumentPropertiesResponse.md)
|
599
|
-
- [AsposePdfCloud::DocumentProperty](docs/DocumentProperty.md)
|
600
|
-
- [AsposePdfCloud::DocumentPropertyResponse](docs/DocumentPropertyResponse.md)
|
601
|
-
- [AsposePdfCloud::DocumentResponse](docs/DocumentResponse.md)
|
602
|
-
- [AsposePdfCloud::Field](docs/Field.md)
|
603
|
-
- [AsposePdfCloud::FieldResponse](docs/FieldResponse.md)
|
604
|
-
- [AsposePdfCloud::Fields](docs/Fields.md)
|
605
|
-
- [AsposePdfCloud::FieldsResponse](docs/FieldsResponse.md)
|
606
|
-
- [AsposePdfCloud::FileAttachmentAnnotationResponse](docs/FileAttachmentAnnotationResponse.md)
|
607
|
-
- [AsposePdfCloud::FileAttachmentAnnotations](docs/FileAttachmentAnnotations.md)
|
608
|
-
- [AsposePdfCloud::FileAttachmentAnnotationsResponse](docs/FileAttachmentAnnotationsResponse.md)
|
609
|
-
- [AsposePdfCloud::FileVersion](docs/FileVersion.md)
|
610
|
-
- [AsposePdfCloud::FormField](docs/FormField.md)
|
611
|
-
- [AsposePdfCloud::FreeTextAnnotationResponse](docs/FreeTextAnnotationResponse.md)
|
612
|
-
- [AsposePdfCloud::FreeTextAnnotations](docs/FreeTextAnnotations.md)
|
613
|
-
- [AsposePdfCloud::FreeTextAnnotationsResponse](docs/FreeTextAnnotationsResponse.md)
|
614
|
-
- [AsposePdfCloud::HighlightAnnotationResponse](docs/HighlightAnnotationResponse.md)
|
615
|
-
- [AsposePdfCloud::HighlightAnnotations](docs/HighlightAnnotations.md)
|
616
|
-
- [AsposePdfCloud::HighlightAnnotationsResponse](docs/HighlightAnnotationsResponse.md)
|
617
|
-
- [AsposePdfCloud::Image](docs/Image.md)
|
618
|
-
- [AsposePdfCloud::ImageResponse](docs/ImageResponse.md)
|
619
|
-
- [AsposePdfCloud::Images](docs/Images.md)
|
620
|
-
- [AsposePdfCloud::ImagesResponse](docs/ImagesResponse.md)
|
621
|
-
- [AsposePdfCloud::InkAnnotationResponse](docs/InkAnnotationResponse.md)
|
622
|
-
- [AsposePdfCloud::InkAnnotations](docs/InkAnnotations.md)
|
623
|
-
- [AsposePdfCloud::InkAnnotationsResponse](docs/InkAnnotationsResponse.md)
|
624
|
-
- [AsposePdfCloud::LineAnnotationResponse](docs/LineAnnotationResponse.md)
|
625
|
-
- [AsposePdfCloud::LineAnnotations](docs/LineAnnotations.md)
|
626
|
-
- [AsposePdfCloud::LineAnnotationsResponse](docs/LineAnnotationsResponse.md)
|
627
|
-
- [AsposePdfCloud::LinkAnnotation](docs/LinkAnnotation.md)
|
628
|
-
- [AsposePdfCloud::LinkAnnotationResponse](docs/LinkAnnotationResponse.md)
|
629
|
-
- [AsposePdfCloud::LinkAnnotations](docs/LinkAnnotations.md)
|
630
|
-
- [AsposePdfCloud::LinkAnnotationsResponse](docs/LinkAnnotationsResponse.md)
|
631
|
-
- [AsposePdfCloud::ListBoxFieldResponse](docs/ListBoxFieldResponse.md)
|
632
|
-
- [AsposePdfCloud::ListBoxFields](docs/ListBoxFields.md)
|
633
|
-
- [AsposePdfCloud::ListBoxFieldsResponse](docs/ListBoxFieldsResponse.md)
|
634
|
-
- [AsposePdfCloud::MovieAnnotationResponse](docs/MovieAnnotationResponse.md)
|
635
|
-
- [AsposePdfCloud::MovieAnnotations](docs/MovieAnnotations.md)
|
636
|
-
- [AsposePdfCloud::MovieAnnotationsResponse](docs/MovieAnnotationsResponse.md)
|
637
|
-
- [AsposePdfCloud::Page](docs/Page.md)
|
638
|
-
- [AsposePdfCloud::Pages](docs/Pages.md)
|
639
|
-
- [AsposePdfCloud::PolyLineAnnotationResponse](docs/PolyLineAnnotationResponse.md)
|
640
|
-
- [AsposePdfCloud::PolyLineAnnotations](docs/PolyLineAnnotations.md)
|
641
|
-
- [AsposePdfCloud::PolyLineAnnotationsResponse](docs/PolyLineAnnotationsResponse.md)
|
642
|
-
- [AsposePdfCloud::PolygonAnnotationResponse](docs/PolygonAnnotationResponse.md)
|
643
|
-
- [AsposePdfCloud::PolygonAnnotations](docs/PolygonAnnotations.md)
|
644
|
-
- [AsposePdfCloud::PolygonAnnotationsResponse](docs/PolygonAnnotationsResponse.md)
|
645
|
-
- [AsposePdfCloud::PopupAnnotationResponse](docs/PopupAnnotationResponse.md)
|
646
|
-
- [AsposePdfCloud::PopupAnnotations](docs/PopupAnnotations.md)
|
647
|
-
- [AsposePdfCloud::PopupAnnotationsResponse](docs/PopupAnnotationsResponse.md)
|
648
|
-
- [AsposePdfCloud::RadioButtonFieldResponse](docs/RadioButtonFieldResponse.md)
|
649
|
-
- [AsposePdfCloud::RadioButtonFields](docs/RadioButtonFields.md)
|
650
|
-
- [AsposePdfCloud::RadioButtonFieldsResponse](docs/RadioButtonFieldsResponse.md)
|
651
|
-
- [AsposePdfCloud::RedactionAnnotationResponse](docs/RedactionAnnotationResponse.md)
|
652
|
-
- [AsposePdfCloud::RedactionAnnotations](docs/RedactionAnnotations.md)
|
653
|
-
- [AsposePdfCloud::RedactionAnnotationsResponse](docs/RedactionAnnotationsResponse.md)
|
654
|
-
- [AsposePdfCloud::ScreenAnnotationResponse](docs/ScreenAnnotationResponse.md)
|
655
|
-
- [AsposePdfCloud::ScreenAnnotations](docs/ScreenAnnotations.md)
|
656
|
-
- [AsposePdfCloud::ScreenAnnotationsResponse](docs/ScreenAnnotationsResponse.md)
|
657
|
-
- [AsposePdfCloud::SignatureFieldResponse](docs/SignatureFieldResponse.md)
|
658
|
-
- [AsposePdfCloud::SignatureFields](docs/SignatureFields.md)
|
659
|
-
- [AsposePdfCloud::SignatureFieldsResponse](docs/SignatureFieldsResponse.md)
|
660
|
-
- [AsposePdfCloud::SignatureVerifyResponse](docs/SignatureVerifyResponse.md)
|
661
|
-
- [AsposePdfCloud::SoundAnnotationResponse](docs/SoundAnnotationResponse.md)
|
662
|
-
- [AsposePdfCloud::SoundAnnotations](docs/SoundAnnotations.md)
|
663
|
-
- [AsposePdfCloud::SoundAnnotationsResponse](docs/SoundAnnotationsResponse.md)
|
664
|
-
- [AsposePdfCloud::SplitResultDocument](docs/SplitResultDocument.md)
|
665
|
-
- [AsposePdfCloud::SplitResultResponse](docs/SplitResultResponse.md)
|
666
|
-
- [AsposePdfCloud::SquareAnnotationResponse](docs/SquareAnnotationResponse.md)
|
667
|
-
- [AsposePdfCloud::SquareAnnotations](docs/SquareAnnotations.md)
|
668
|
-
- [AsposePdfCloud::SquareAnnotationsResponse](docs/SquareAnnotationsResponse.md)
|
669
|
-
- [AsposePdfCloud::SquigglyAnnotationResponse](docs/SquigglyAnnotationResponse.md)
|
670
|
-
- [AsposePdfCloud::SquigglyAnnotations](docs/SquigglyAnnotations.md)
|
671
|
-
- [AsposePdfCloud::SquigglyAnnotationsResponse](docs/SquigglyAnnotationsResponse.md)
|
672
|
-
- [AsposePdfCloud::StampAnnotationResponse](docs/StampAnnotationResponse.md)
|
673
|
-
- [AsposePdfCloud::StampAnnotations](docs/StampAnnotations.md)
|
674
|
-
- [AsposePdfCloud::StampAnnotationsResponse](docs/StampAnnotationsResponse.md)
|
675
|
-
- [AsposePdfCloud::StampBase](docs/StampBase.md)
|
676
|
-
- [AsposePdfCloud::StampInfo](docs/StampInfo.md)
|
677
|
-
- [AsposePdfCloud::StampsInfo](docs/StampsInfo.md)
|
678
|
-
- [AsposePdfCloud::StampsInfoResponse](docs/StampsInfoResponse.md)
|
679
|
-
- [AsposePdfCloud::StrikeOutAnnotationResponse](docs/StrikeOutAnnotationResponse.md)
|
680
|
-
- [AsposePdfCloud::StrikeOutAnnotations](docs/StrikeOutAnnotations.md)
|
681
|
-
- [AsposePdfCloud::StrikeOutAnnotationsResponse](docs/StrikeOutAnnotationsResponse.md)
|
682
|
-
- [AsposePdfCloud::Table](docs/Table.md)
|
683
|
-
- [AsposePdfCloud::TableRecognized](docs/TableRecognized.md)
|
684
|
-
- [AsposePdfCloud::TableRecognizedResponse](docs/TableRecognizedResponse.md)
|
685
|
-
- [AsposePdfCloud::TablesRecognized](docs/TablesRecognized.md)
|
686
|
-
- [AsposePdfCloud::TablesRecognizedResponse](docs/TablesRecognizedResponse.md)
|
687
|
-
- [AsposePdfCloud::TextAnnotationResponse](docs/TextAnnotationResponse.md)
|
688
|
-
- [AsposePdfCloud::TextAnnotations](docs/TextAnnotations.md)
|
689
|
-
- [AsposePdfCloud::TextAnnotationsResponse](docs/TextAnnotationsResponse.md)
|
690
|
-
- [AsposePdfCloud::TextBoxFieldResponse](docs/TextBoxFieldResponse.md)
|
691
|
-
- [AsposePdfCloud::TextBoxFields](docs/TextBoxFields.md)
|
692
|
-
- [AsposePdfCloud::TextBoxFieldsResponse](docs/TextBoxFieldsResponse.md)
|
693
|
-
- [AsposePdfCloud::TextRectsResponse](docs/TextRectsResponse.md)
|
694
|
-
- [AsposePdfCloud::TextReplaceResponse](docs/TextReplaceResponse.md)
|
695
|
-
- [AsposePdfCloud::UnderlineAnnotationResponse](docs/UnderlineAnnotationResponse.md)
|
696
|
-
- [AsposePdfCloud::UnderlineAnnotations](docs/UnderlineAnnotations.md)
|
697
|
-
- [AsposePdfCloud::UnderlineAnnotationsResponse](docs/UnderlineAnnotationsResponse.md)
|
698
|
-
- [AsposePdfCloud::WordCountResponse](docs/WordCountResponse.md)
|
699
|
-
- [AsposePdfCloud::AnnotationInfo](docs/AnnotationInfo.md)
|
700
|
-
- [AsposePdfCloud::CheckBoxField](docs/CheckBoxField.md)
|
701
|
-
- [AsposePdfCloud::ChoiceField](docs/ChoiceField.md)
|
702
|
-
- [AsposePdfCloud::ImageFooter](docs/ImageFooter.md)
|
703
|
-
- [AsposePdfCloud::ImageHeader](docs/ImageHeader.md)
|
704
|
-
- [AsposePdfCloud::ImageStamp](docs/ImageStamp.md)
|
705
|
-
- [AsposePdfCloud::MarkupAnnotation](docs/MarkupAnnotation.md)
|
706
|
-
- [AsposePdfCloud::MovieAnnotation](docs/MovieAnnotation.md)
|
707
|
-
- [AsposePdfCloud::PageNumberStamp](docs/PageNumberStamp.md)
|
708
|
-
- [AsposePdfCloud::PdfPageStamp](docs/PdfPageStamp.md)
|
709
|
-
- [AsposePdfCloud::PopupAnnotation](docs/PopupAnnotation.md)
|
710
|
-
- [AsposePdfCloud::RadioButtonOptionField](docs/RadioButtonOptionField.md)
|
711
|
-
- [AsposePdfCloud::RedactionAnnotation](docs/RedactionAnnotation.md)
|
712
|
-
- [AsposePdfCloud::ScreenAnnotation](docs/ScreenAnnotation.md)
|
713
|
-
- [AsposePdfCloud::SignatureField](docs/SignatureField.md)
|
714
|
-
- [AsposePdfCloud::TextBoxField](docs/TextBoxField.md)
|
715
|
-
- [AsposePdfCloud::TextFooter](docs/TextFooter.md)
|
716
|
-
- [AsposePdfCloud::TextHeader](docs/TextHeader.md)
|
717
|
-
- [AsposePdfCloud::TextStamp](docs/TextStamp.md)
|
718
|
-
- [AsposePdfCloud::CaretAnnotation](docs/CaretAnnotation.md)
|
719
|
-
- [AsposePdfCloud::ComboBoxField](docs/ComboBoxField.md)
|
720
|
-
- [AsposePdfCloud::CommonFigureAnnotation](docs/CommonFigureAnnotation.md)
|
721
|
-
- [AsposePdfCloud::FileAttachmentAnnotation](docs/FileAttachmentAnnotation.md)
|
722
|
-
- [AsposePdfCloud::FreeTextAnnotation](docs/FreeTextAnnotation.md)
|
723
|
-
- [AsposePdfCloud::HighlightAnnotation](docs/HighlightAnnotation.md)
|
724
|
-
- [AsposePdfCloud::InkAnnotation](docs/InkAnnotation.md)
|
725
|
-
- [AsposePdfCloud::LineAnnotation](docs/LineAnnotation.md)
|
726
|
-
- [AsposePdfCloud::ListBoxField](docs/ListBoxField.md)
|
727
|
-
- [AsposePdfCloud::PolyAnnotation](docs/PolyAnnotation.md)
|
728
|
-
- [AsposePdfCloud::PopupAnnotationWithParent](docs/PopupAnnotationWithParent.md)
|
729
|
-
- [AsposePdfCloud::RadioButtonField](docs/RadioButtonField.md)
|
730
|
-
- [AsposePdfCloud::SoundAnnotation](docs/SoundAnnotation.md)
|
731
|
-
- [AsposePdfCloud::SquigglyAnnotation](docs/SquigglyAnnotation.md)
|
732
|
-
- [AsposePdfCloud::StampAnnotation](docs/StampAnnotation.md)
|
733
|
-
- [AsposePdfCloud::StrikeOutAnnotation](docs/StrikeOutAnnotation.md)
|
734
|
-
- [AsposePdfCloud::TextAnnotation](docs/TextAnnotation.md)
|
735
|
-
- [AsposePdfCloud::UnderlineAnnotation](docs/UnderlineAnnotation.md)
|
736
|
-
- [AsposePdfCloud::CircleAnnotation](docs/CircleAnnotation.md)
|
737
|
-
- [AsposePdfCloud::PolyLineAnnotation](docs/PolyLineAnnotation.md)
|
738
|
-
- [AsposePdfCloud::PolygonAnnotation](docs/PolygonAnnotation.md)
|
739
|
-
- [AsposePdfCloud::SquareAnnotation](docs/SquareAnnotation.md)
|
740
|
-
|
741
|
-
|
742
|
-
## Aspose.PDF Cloud SDKs in Popular Languages
|
743
|
-
|
744
|
-
| .NET | Java | PHP | Python | Ruby | Node.js | Android | Swift|Go|
|
745
|
-
|---|---|---|---|---|---|---|--|--|
|
746
|
-
| [GitHub](https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-dotnet) | [GitHub](https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-java) | [GitHub](https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-php) | [GitHub](https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-python) | [GitHub](https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-ruby) | [GitHub](https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-node.js) | [GitHub](https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-android) | [GitHub](https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-swift)|[GitHub](https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-go) |
|
747
|
-
| [NuGet](https://www.nuget.org/packages/Aspose.pdf-Cloud/) | [Maven](https://repository.aspose.cloud/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-pdf-cloud) | [Composer](https://packagist.org/packages/aspose/pdf-sdk-php) | [PIP](https://pypi.org/project/asposepdfcloud/) | [GEM](https://rubygems.org/gems/aspose_pdf_cloud) | [NPM](https://www.npmjs.com/package/asposepdfcloud) | [Maven](https://repository.aspose.cloud/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-pdf-cloud) | [Cocoapods](https://cocoapods.org/pods/AsposepdfCloud)|[Go.Dev](https://pkg.go.dev/github.com/aspose-pdf-cloud/aspose-pdf-cloud-go/v20#readme-aspose-pdf-cloud) |
|
748
|
-
|
749
|
-
[Product Page](https://products.aspose.cloud/pdf/ruby) | [Documentation](https://docs.aspose.cloud/display/pdfcloud/Home) | [API Reference](https://apireference.aspose.cloud/pdf/) | [Code Samples](https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-ruby) | [Blog](https://blog.aspose.cloud/category/pdf/) | [Free Support](https://forum.aspose.cloud/c/pdf) | [Free Trial](https://dashboard.aspose.cloud/#/apps)
|