Skip to content

Commit b7c2037

Browse files
Merge pull request #30 from kaferi/master
Update to v20.4
2 parents d878104 + bfefff9 commit b7c2037

File tree

11 files changed

+392
-70
lines changed

11 files changed

+392
-70
lines changed

README.md

Lines changed: 5 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.2.0
3+
- Package version: 20.4.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.2.0</version>
41+
<version>20.4.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.2.0"
51+
compile "com.aspose:aspose-cloud-pdf:20.4.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.2.0.jar
62+
* target/aspose-cloud-pdf-20.4.0.jar
6363
* target/lib/*.jar
6464

6565
## Getting Started
@@ -523,6 +523,7 @@ Class | Method | HTTP request | Description
523523
- [HorizontalAlignment](docs/HorizontalAlignment.md)
524524
- [HtmlDocumentType](docs/HtmlDocumentType.md)
525525
- [HtmlMarkupGenerationModes](docs/HtmlMarkupGenerationModes.md)
526+
- [ImageFragment](docs/ImageFragment.md)
526527
- [ImageSrcType](docs/ImageSrcType.md)
527528
- [ImageTemplate](docs/ImageTemplate.md)
528529
- [ImageTemplatesRequest](docs/ImageTemplatesRequest.md)

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.2.0'
23+
version = '20.4.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.2.0'
74+
publishVersion = '20.4.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/Cell.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
1010
**border** | [**BorderInfo**](BorderInfo.md) | Gets or sets the border. | [optional]
1111
**backgroundColor** | [**Color**](Color.md) | Gets or sets the background color. | [optional]
1212
**backgroundImageFile** | **String** | Gets or sets the background image file. | [optional]
13+
**backgroundImageStorageFile** | **String** | Gets or sets path of the background image file from storage. | [optional]
1314
**alignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets or sets the alignment. | [optional]
1415
**defaultCellTextState** | [**TextState**](TextState.md) | Gets or sets the default cell text state. | [optional]
1516
**paragraphs** | [**List&lt;TextRect&gt;**](TextRect.md) | Gets or sets the cell's formatted text. | [optional]
@@ -18,6 +19,8 @@ Name | Type | Description | Notes
1819
**colSpan** | **Integer** | Gets or sets the column span. | [optional]
1920
**rowSpan** | **Integer** | Gets or sets the row span. | [optional]
2021
**width** | **Double** | Gets or sets the column width. | [optional]
22+
**htmlFragment** | **String** | Gets or sets Html fragment. | [optional]
23+
**images** | [**List&lt;ImageFragment&gt;**](ImageFragment.md) | Gets or sets ImageFragment list. | [optional]
2124

2225

2326
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

docs/ImageFragment.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
# ImageFragment
3+
Represents Image Fragment DTO.
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**imageFile** | **String** | Gets or sets full storage path of image. |
9+
**fixWidth** | **Double** | Gets or sets fix width of the image. | [optional]
10+
**fixHeight** | **Double** | Gets or sets fix height of the image. | [optional]
11+
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets or sets horizontal alignment of the image. | [optional]
12+
**verticalAlignment** | [**VerticalAlignment**](VerticalAlignment.md) | Gets or sets vertical alignment of the image. | [optional]
13+
**imageScale** | **Double** | Gets or sets ImageScale of the image. | [optional]
14+
**margin** | [**MarginInfo**](MarginInfo.md) | Gets or sets Margin of the image. | [optional]
15+
16+
17+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
18+
19+

docs/PdfApi.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3847,7 +3847,7 @@ Name | Type | Description | Notes
38473847

38483848
<a name="getPdfInStorageToLaTeX"></a>
38493849
# **getPdfInStorageToLaTeX**
3850-
> File getPdfInStorageToLaTeX(name, pagesCount, folder, storage)
3850+
> File getPdfInStorageToLaTeX(name, folder, storage)
38513851
38523852
Converts PDF document (located on storage) to LaTeX format and returns resulting file in response content
38533853

@@ -3856,7 +3856,6 @@ Converts PDF document (located on storage) to LaTeX format and returns resulting
38563856
Name | Type | Description | Notes
38573857
------------- | ------------- | ------------- | -------------
38583858
**name** | **String**| The document name. |
3859-
**pagesCount** | **Integer**| Pages count. | [optional]
38603859
**folder** | **String**| The document folder. | [optional]
38613860
**storage** | **String**| The document storage. | [optional]
38623861

@@ -7736,7 +7735,7 @@ Name | Type | Description | Notes
77367735

77377736
<a name="putPdfInRequestToLaTeX"></a>
77387737
# **putPdfInRequestToLaTeX**
7739-
> AsposeResponse putPdfInRequestToLaTeX(outPath, pagesCount, storage, file)
7738+
> AsposeResponse putPdfInRequestToLaTeX(outPath, storage, file)
77407739
77417740
Converts PDF document (in request content) to LaTeX format and uploads resulting file to storage.
77427741

@@ -7745,7 +7744,6 @@ Converts PDF document (in request content) to LaTeX format and uploads resulting
77457744
Name | Type | Description | Notes
77467745
------------- | ------------- | ------------- | -------------
77477746
**outPath** | **String**| Full resulting filename (ex. /folder1/folder2/result.tex) |
7748-
**pagesCount** | **Integer**| Pages count. | [optional]
77497747
**storage** | **String**| The document storage. | [optional]
77507748
**file** | **File**| A file to be converted. | [optional]
77517749

@@ -8103,7 +8101,7 @@ Name | Type | Description | Notes
81038101

81048102
<a name="putPdfInStorageToLaTeX"></a>
81058103
# **putPdfInStorageToLaTeX**
8106-
> AsposeResponse putPdfInStorageToLaTeX(name, outPath, pagesCount, folder, storage)
8104+
> AsposeResponse putPdfInStorageToLaTeX(name, outPath, folder, storage)
81078105
81088106
Converts PDF document (located on storage) to LaTeX format and uploads resulting file to storage
81098107

@@ -8113,7 +8111,6 @@ Name | Type | Description | Notes
81138111
------------- | ------------- | ------------- | -------------
81148112
**name** | **String**| The document name. |
81158113
**outPath** | **String**| Full resulting filename (ex. /folder1/folder2/result.tex) |
8116-
**pagesCount** | **Integer**| Pages count. | [optional]
81178114
**folder** | **String**| The document folder. | [optional]
81188115
**storage** | **String**| The document storage. | [optional]
81198116

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.2.0</version>
9+
<version>20.4.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)