Skip to content

Commit cd2631e

Browse files
authored
Merge pull request #35 from kaferi/master
Update to v20.9
2 parents 4be0b25 + 268c217 commit cd2631e

File tree

13 files changed

+78
-40
lines changed

13 files changed

+78
-40
lines changed

README.md

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

6565
## Getting Started

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.8.0'
23+
version = '20.9.0'
2424

2525
buildscript {
2626
repositories {
@@ -71,7 +71,7 @@ dependencies {
7171
publish {
7272
groupId = 'com.aspose'
7373
artifactId = 'aspose-pdf-cloud'
74-
publishVersion = '20.8.0'
74+
publishVersion = '20.9.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: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5881,7 +5881,7 @@ Name | Type | Description | Notes
58815881

58825882
<a name="postPageRedactionAnnotations"></a>
58835883
# **postPageRedactionAnnotations**
5884-
> AsposeResponse postPageRedactionAnnotations(name, pageNumber, annotations, storage, folder)
5884+
> AsposeResponse postPageRedactionAnnotations(name, pageNumber, annotations, storage, folder, apply)
58855885
58865886
Add document page redaction annotations.
58875887

@@ -5894,6 +5894,7 @@ Name | Type | Description | Notes
58945894
**annotations** | [**List&lt;RedactionAnnotation&gt;**](RedactionAnnotation.md)| The array of annotation. |
58955895
**storage** | **String**| The document storage. | [optional]
58965896
**folder** | **String**| The document folder. | [optional]
5897+
**apply** | **Boolean**| Apply redaction immediately after adding. | [optional] [default to false]
58975898

58985899
### Return type
58995900

@@ -8633,7 +8634,7 @@ Name | Type | Description | Notes
86338634

86348635
<a name="putRedactionAnnotation"></a>
86358636
# **putRedactionAnnotation**
8636-
> RedactionAnnotationResponse putRedactionAnnotation(name, annotationId, annotation, storage, folder)
8637+
> RedactionAnnotationResponse putRedactionAnnotation(name, annotationId, annotation, storage, folder, apply)
86378638
86388639
Replace document redaction annotation
86398640

@@ -8646,6 +8647,7 @@ Name | Type | Description | Notes
86468647
**annotation** | [**RedactionAnnotation**](RedactionAnnotation.md)| Annotation. |
86478648
**storage** | **String**| The document storage. | [optional]
86488649
**folder** | **String**| The document folder. | [optional]
8650+
**apply** | **Boolean**| Apply redaction immediately after adding. | [optional] [default to false]
86498651

86508652
### Return type
86518653

docs/RedactionAnnotation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
99
**fillColor** | [**Color**](Color.md) | Gets or sets color to fill annotation. | [optional]
1010
**borderColor** | [**Color**](Color.md) | Gets or sets color of border which is drawn when redaction is not active. | [optional]
1111
**overlayText** | **String** | Text to print on redact annotation. | [optional]
12-
**repeat** | **Boolean** | If true overlay text will be repated on the annotation. | [optional]
12+
**repeat** | **Boolean** | If true overlay text will be repeated on the annotation. | [optional]
1313
**textAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets or sets. Alignment of Overlay Text. | [optional]
1414
**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
1515
**contents** | **String** | Get the annotation content. | [optional]

docs/SignatureCustomAppearance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
# SignatureCustomAppearance
3-
An abstract class which represents signature custon appearance object.
3+
An abstract class which represents signature custom appearance object.
44

55
## Properties
66
Name | Type | Description | Notes

docs/TextStyle.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
99
**font** | **String** | Gets or sets font of the text. | [optional]
1010
**foregroundColor** | [**Color**](Color.md) | Gets or sets foreground color of the text. | [optional]
1111
**backgroundColor** | [**Color**](Color.md) | Sets background color of the text. | [optional]
12+
**fontFile** | **String** | Sets path of font file in storage. | [optional]
1213

1314

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

pom.xml

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

src/main/java/com/aspose/asposecloudpdf/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public ApiClient() {
9292

9393
// Add custom headers
9494
addDefaultHeader("x-aspose-client", "java sdk");
95-
addDefaultHeader("x-aspose-client-version", "20.8.0");
95+
addDefaultHeader("x-aspose-client-version", "20.9.0");
9696

9797
// PDFCLOUD-418 Set default Connect Timeout
9898
setConnectTimeout(5 * 60 * 1000);

0 commit comments

Comments
 (0)