Skip to content

Commit 1dd5c36

Browse files
Merge pull request #28 from kaferi/master
Update to v20.2
2 parents 2427bdf + aa3334e commit 1dd5c36

File tree

7 files changed

+417
-12
lines changed

7 files changed

+417
-12
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Aspose.PDF Cloud
22
- API version: 3.0
3-
- Package version: 20.1.0
3+
- Package version: 20.2.0
44

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

@@ -38,7 +38,7 @@ Add this dependency to your project's POM:
3838
<dependency>
3939
<groupId>com.aspose</groupId>
4040
<artifactId>aspose-cloud-pdf</artifactId>
41-
<version>20.1.0</version>
41+
<version>20.2.0</version>
4242
<scope>compile</scope>
4343
</dependency>
4444
```
@@ -48,7 +48,7 @@ Add this dependency to your project's POM:
4848
Add this dependency to your project's build file:
4949

5050
```groovy
51-
compile "com.aspose:aspose-cloud-pdf:20.1.0"
51+
compile "com.aspose:aspose-cloud-pdf:20.2.0"
5252
```
5353

5454
### Others
@@ -59,7 +59,7 @@ At first generate the JAR by executing:
5959

6060
Then manually install the following JARs:
6161

62-
* target/aspose-cloud-pdf-20.1.0.jar
62+
* target/aspose-cloud-pdf-20.2.0.jar
6363
* target/lib/*.jar
6464

6565
## Getting Started
@@ -257,6 +257,7 @@ Class | Method | HTTP request | Description
257257
*PdfApi* | [**getPageUnderlineAnnotations**](docs/PdfApi.md#getPageUnderlineAnnotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/underline | Read document page underline annotations.
258258
*PdfApi* | [**getPages**](docs/PdfApi.md#getPages) | **GET** /pdf/\{name}/pages | Read document pages info.
259259
*PdfApi* | [**getPclInStorageToPdf**](docs/PdfApi.md#getPclInStorageToPdf) | **GET** /pdf/create/pcl | Convert PCL file (located on storage) to PDF format and return resulting file in response.
260+
*PdfApi* | [**getPdfAInStorageToPdf**](docs/PdfApi.md#getPdfAInStorageToPdf) | **GET** /pdf/create/pdfa | Convert PDFA file (located on storage) to PDF format and return resulting file in response.
260261
*PdfApi* | [**getPdfInStorageToDoc**](docs/PdfApi.md#getPdfInStorageToDoc) | **GET** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and returns resulting file in response content
261262
*PdfApi* | [**getPdfInStorageToEpub**](docs/PdfApi.md#getPdfInStorageToEpub) | **GET** /pdf/\{name}/convert/epub | Converts PDF document (located on storage) to EPUB format and returns resulting file in response content
262263
*PdfApi* | [**getPdfInStorageToHtml**](docs/PdfApi.md#getPdfInStorageToHtml) | **GET** /pdf/\{name}/convert/html | Converts PDF document (located on storage) to Html format and returns resulting file in response content
@@ -410,6 +411,7 @@ Class | Method | HTTP request | Description
410411
*PdfApi* | [**putPageConvertToPng**](docs/PdfApi.md#putPageConvertToPng) | **PUT** /pdf/\{name}/pages/\{pageNumber}/convert/png | Convert document page to png image and upload resulting file to storage.
411412
*PdfApi* | [**putPageConvertToTiff**](docs/PdfApi.md#putPageConvertToTiff) | **PUT** /pdf/\{name}/pages/\{pageNumber}/convert/tiff | Convert document page to Tiff image and upload resulting file to storage.
412413
*PdfApi* | [**putPclInStorageToPdf**](docs/PdfApi.md#putPclInStorageToPdf) | **PUT** /pdf/\{name}/create/pcl | Convert PCL file (located on storage) to PDF format and upload resulting file to storage.
414+
*PdfApi* | [**putPdfAInStorageToPdf**](docs/PdfApi.md#putPdfAInStorageToPdf) | **PUT** /pdf/\{name}/create/pdfa | Convert PDFA file (located on storage) to PDF format and upload resulting file to storage.
413415
*PdfApi* | [**putPdfInRequestToDoc**](docs/PdfApi.md#putPdfInRequestToDoc) | **PUT** /pdf/convert/doc | Converts PDF document (in request content) to DOC format and uploads resulting file to storage.
414416
*PdfApi* | [**putPdfInRequestToEpub**](docs/PdfApi.md#putPdfInRequestToEpub) | **PUT** /pdf/convert/epub | Converts PDF document (in request content) to EPUB format and uploads resulting file to storage.
415417
*PdfApi* | [**putPdfInRequestToHtml**](docs/PdfApi.md#putPdfInRequestToHtml) | **PUT** /pdf/convert/html | Converts PDF document (in request content) to Html format and uploads resulting file to storage.

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ apply plugin: 'idea'
2020
apply plugin: 'eclipse'
2121

2222
group = 'com.aspose'
23-
version = '20.1.0'
23+
version = '20.2.0'
2424

2525
buildscript {
2626
repositories {
@@ -71,7 +71,7 @@ dependencies {
7171
publish {
7272
groupId = 'com.aspose'
7373
artifactId = 'aspose-cloud-pdf'
74-
publishVersion = '20.1.0'
74+
publishVersion = '20.2.0'
7575
desc = 'Aspose.PDF Cloud is a REST API for creating and editing PDF files. It can also be used to convert PDF files to different formats like DOC, HTML, XPS, TIFF and many more. Aspose.PDF Cloud gives you control: create PDFs from scratch or from HTML, XML, template, database, XPS or an image. Render PDFs to image formats such as JPEG, PNG, GIF, BMP, TIFF and many others. Aspose.PDF Cloud helps you manipulate elements of a PDF file like text, annotations, watermarks, signatures, bookmarks, stamps and so on. Its REST API also allows you to manage PDF pages by using features like merging, splitting, and inserting. Add images to a PDF file or convert PDF pages to images.'
7676
licences = ['MIT']
7777
website = 'https://products.aspose.cloud/pdf/cloud'

docs/PdfApi.md

Lines changed: 51 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ Method | HTTP request | Description
145145
[**getPageUnderlineAnnotations**](PdfApi.md#getPageUnderlineAnnotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/underline | Read document page underline annotations.
146146
[**getPages**](PdfApi.md#getPages) | **GET** /pdf/\{name}/pages | Read document pages info.
147147
[**getPclInStorageToPdf**](PdfApi.md#getPclInStorageToPdf) | **GET** /pdf/create/pcl | Convert PCL file (located on storage) to PDF format and return resulting file in response.
148+
[**getPdfAInStorageToPdf**](PdfApi.md#getPdfAInStorageToPdf) | **GET** /pdf/create/pdfa | Convert PDFA file (located on storage) to PDF format and return resulting file in response.
148149
[**getPdfInStorageToDoc**](PdfApi.md#getPdfInStorageToDoc) | **GET** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and returns resulting file in response content
149150
[**getPdfInStorageToEpub**](PdfApi.md#getPdfInStorageToEpub) | **GET** /pdf/\{name}/convert/epub | Converts PDF document (located on storage) to EPUB format and returns resulting file in response content
150151
[**getPdfInStorageToHtml**](PdfApi.md#getPdfInStorageToHtml) | **GET** /pdf/\{name}/convert/html | Converts PDF document (located on storage) to Html format and returns resulting file in response content
@@ -298,6 +299,7 @@ Method | HTTP request | Description
298299
[**putPageConvertToPng**](PdfApi.md#putPageConvertToPng) | **PUT** /pdf/\{name}/pages/\{pageNumber}/convert/png | Convert document page to png image and upload resulting file to storage.
299300
[**putPageConvertToTiff**](PdfApi.md#putPageConvertToTiff) | **PUT** /pdf/\{name}/pages/\{pageNumber}/convert/tiff | Convert document page to Tiff image and upload resulting file to storage.
300301
[**putPclInStorageToPdf**](PdfApi.md#putPclInStorageToPdf) | **PUT** /pdf/\{name}/create/pcl | Convert PCL file (located on storage) to PDF format and upload resulting file to storage.
302+
[**putPdfAInStorageToPdf**](PdfApi.md#putPdfAInStorageToPdf) | **PUT** /pdf/\{name}/create/pdfa | Convert PDFA file (located on storage) to PDF format and upload resulting file to storage.
301303
[**putPdfInRequestToDoc**](PdfApi.md#putPdfInRequestToDoc) | **PUT** /pdf/convert/doc | Converts PDF document (in request content) to DOC format and uploads resulting file to storage.
302304
[**putPdfInRequestToEpub**](PdfApi.md#putPdfInRequestToEpub) | **PUT** /pdf/convert/epub | Converts PDF document (in request content) to EPUB format and uploads resulting file to storage.
303305
[**putPdfInRequestToHtml**](PdfApi.md#putPdfInRequestToHtml) | **PUT** /pdf/convert/html | Converts PDF document (in request content) to Html format and uploads resulting file to storage.
@@ -3708,6 +3710,29 @@ Name | Type | Description | Notes
37083710

37093711
**File**
37103712

3713+
### HTTP request headers
3714+
3715+
- **Content-Type**: application/json
3716+
- **Accept**: multipart/form-data
3717+
3718+
<a name="getPdfAInStorageToPdf"></a>
3719+
# **getPdfAInStorageToPdf**
3720+
> File getPdfAInStorageToPdf(srcPath, dontOptimize, storage)
3721+
3722+
Convert PDFA file (located on storage) to PDF format and return resulting file in response.
3723+
3724+
### Parameters
3725+
3726+
Name | Type | Description | Notes
3727+
------------- | ------------- | ------------- | -------------
3728+
**srcPath** | **String**| Full source filename (ex. /folder1/folder2/template.pdf) |
3729+
**dontOptimize** | **Boolean**| If set, document resources will not be optimized. | [optional]
3730+
**storage** | **String**| The document storage. | [optional]
3731+
3732+
### Return type
3733+
3734+
**File**
3735+
37113736
### HTTP request headers
37123737

37133738
- **Content-Type**: application/json
@@ -4891,7 +4916,7 @@ Add document bookmarks.
48914916
Name | Type | Description | Notes
48924917
------------- | ------------- | ------------- | -------------
48934918
**name** | **String**| The document name. |
4894-
**bookmarkPath** | **String**| The bookmark path. |
4919+
**bookmarkPath** | **String**| The parent bookmark path. Specify an empty string when adding a bookmark to the root. |
48954920
**bookmarks** | [**List&lt;Bookmark&gt;**](Bookmark.md)| The array of bookmark. |
48964921
**folder** | **String**| The document folder. | [optional]
48974922
**storage** | **String**| The document storage. | [optional]
@@ -7572,6 +7597,31 @@ Name | Type | Description | Notes
75727597

75737598
[**AsposeResponse**](AsposeResponse.md)
75747599

7600+
### HTTP request headers
7601+
7602+
- **Content-Type**: application/json
7603+
- **Accept**: application/json
7604+
7605+
<a name="putPdfAInStorageToPdf"></a>
7606+
# **putPdfAInStorageToPdf**
7607+
> AsposeResponse putPdfAInStorageToPdf(name, srcPath, dstFolder, dontOptimize, storage)
7608+
7609+
Convert PDFA file (located on storage) to PDF format and upload resulting file to storage.
7610+
7611+
### Parameters
7612+
7613+
Name | Type | Description | Notes
7614+
------------- | ------------- | ------------- | -------------
7615+
**name** | **String**| The document name. |
7616+
**srcPath** | **String**| Full source filename (ex. /folder1/folder2/template.pdf) |
7617+
**dstFolder** | **String**| The destination document folder. | [optional]
7618+
**dontOptimize** | **Boolean**| If set, document resources will not be optimized. | [optional]
7619+
**storage** | **String**| The document storage. | [optional]
7620+
7621+
### Return type
7622+
7623+
[**AsposeResponse**](AsposeResponse.md)
7624+
75757625
### HTTP request headers
75767626

75777627
- **Content-Type**: application/json

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>aspose-cloud-pdf</artifactId>
77
<packaging>jar</packaging>
88
<name>aspose-cloud-pdf</name>
9-
<version>20.1.0</version>
9+
<version>20.2.0</version>
1010
<url>https://www.aspose.cloud/</url>
1111
<description>Java library for communicating with the Aspose.Pdf for Cloud API</description>
1212

0 commit comments

Comments
 (0)