Skip to content

Commit 6380c63

Browse files
authored
Merge pull request #64 from aspose-pdf-cloud/develop
update to 23.9
2 parents ad80728 + 7a9fc7f commit 6380c63

File tree

6 files changed

+65
-48
lines changed

6 files changed

+65
-48
lines changed

README.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,13 @@ XLS, XLSX, PPTX, DOC, DOCX, MobiXML, JPEG, EMF, PNG, BMP, GIF, TIFF, Text
2929
## Read PDF Formats
3030
MHT, PCL, PS, XSLFO, MD
3131

32-
## Enhancements in Version 23.8
33-
- Support to split password protected PDF documents.
34-
- Support to convert password Protected PDF to Xlsx.
35-
- Support to convert password Protected PDF to Excel.
36-
- Replace a single image using multiple Image Ids.
32+
## Enhancements in Version 23.9
33+
- Support to convert password protected PDF documents to PDFA.
3734
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
3835

39-
## Bugs fixed in Version 23.8
40-
- The putMergeDocuments API method in Node.js Throws Gateway Error.
41-
- Text Replacement Changes the Background.
36+
## Bugs fixed in Version 23.9
37+
- Rotate Property not working with FreeTextAnnotation.
38+
- PutAnnotationsFlatten not working correctly when passing multiple annotation types.
4239

4340
## Requirements
4441
Building the API client library requires [Maven](https://maven.apache.org/) to be installed.

sdk/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 = '23.8.0'
23+
version = '23.9.0'
2424

2525
buildscript {
2626
repositories {
@@ -100,7 +100,7 @@ dependencies {
100100
publish {
101101
groupId = 'com.aspose'
102102
artifactId = 'aspose-cloud-pdf-android'
103-
publishVersion = '23.8.0'
103+
publishVersion = '23.9.0'
104104
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.'
105105
licences = ['MIT']
106106
website = 'https://products.aspose.cloud/pdf/cloud'

sdk/docs/PdfApi.md

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

38603860
<a name="getPdfInStorageToPdfA"></a>
38613861
# **getPdfInStorageToPdfA**
3862-
> File getPdfInStorageToPdfA(name, type, folder, storage)
3862+
> File getPdfInStorageToPdfA(name, type, folder, storage, password)
38633863
38643864
Converts PDF document (located on storage) to PdfA format and returns resulting file in response content
38653865

@@ -3871,6 +3871,7 @@ Name | Type | Description | Notes
38713871
**type** | **String**| Type of PdfA format. | [enum: PDFA1A, PDFA1B, PDFA3A]
38723872
**folder** | **String**| The document folder. | [optional]
38733873
**storage** | **String**| The document storage. | [optional]
3874+
**password** | **String**| The password (Base64). | [optional]
38743875

38753876
### Return type
38763877

@@ -7831,7 +7832,7 @@ Name | Type | Description | Notes
78317832

78327833
<a name="putPdfInRequestToPdfA"></a>
78337834
# **putPdfInRequestToPdfA**
7834-
> AsposeResponse putPdfInRequestToPdfA(outPath, type, storage, file)
7835+
> AsposeResponse putPdfInRequestToPdfA(outPath, type, storage, password, file)
78357836
78367837
Converts PDF document (in request content) to PdfA format and uploads resulting file to storage.
78377838

@@ -7842,6 +7843,7 @@ Name | Type | Description | Notes
78427843
**outPath** | **String**| Full resulting filename (ex. /folder1/folder2/result.pdf) |
78437844
**type** | **String**| Type of PdfA format. | [enum: PDFA1A, PDFA1B, PDFA3A]
78447845
**storage** | **String**| The document storage. | [optional]
7846+
**password** | **String**| The password (Base64). | [optional]
78457847
**file** | **File**| A file to be converted. | [optional]
78467848

78477849
### Return type
@@ -8203,7 +8205,7 @@ Name | Type | Description | Notes
82038205

82048206
<a name="putPdfInStorageToPdfA"></a>
82058207
# **putPdfInStorageToPdfA**
8206-
> AsposeResponse putPdfInStorageToPdfA(name, outPath, type, folder, storage)
8208+
> AsposeResponse putPdfInStorageToPdfA(name, outPath, type, folder, storage, password)
82078209
82088210
Converts PDF document (located on storage) to PdfA format and uploads resulting file to storage
82098211

@@ -8216,6 +8218,7 @@ Name | Type | Description | Notes
82168218
**type** | **String**| Type of PdfA format. | [enum: PDFA1A, PDFA1B, PDFA3A]
82178219
**folder** | **String**| The document folder. | [optional]
82188220
**storage** | **String**| The document storage. | [optional]
8221+
**password** | **String**| The password (Base64). | [optional]
82198222

82208223
### Return type
82218224

sdk/src/main/java/com/aspose/asposecloudpdfandroid/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", "android sdk");
95-
addDefaultHeader("x-aspose-client-version", "23.8.0");
95+
addDefaultHeader("x-aspose-client-version", "23.9.0");
9696

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

0 commit comments

Comments
 (0)