Skip to content

Commit 25b5c34

Browse files
Merge pull request #32 from kaferi/master
Update to v20.6
2 parents 5ac111f + 514fd7f commit 25b5c34

20 files changed

+183
-38
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.5.0
3+
- Package version: 20.6.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.5.0</version>
41+
<version>20.6.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.5.0"
51+
compile "com.aspose:aspose-cloud-pdf:20.6.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.5.0.jar
62+
* target/aspose-cloud-pdf-20.6.0.jar
6363
* target/lib/*.jar
6464

6565
## Getting Started
@@ -546,6 +546,7 @@ Class | Method | HTTP request | Description
546546
- [ObjectExist](docs/ObjectExist.md)
547547
- [OptimizeOptions](docs/OptimizeOptions.md)
548548
- [Option](docs/Option.md)
549+
- [OutputFormat](docs/OutputFormat.md)
549550
- [PageLayout](docs/PageLayout.md)
550551
- [PageMode](docs/PageMode.md)
551552
- [PageWordCount](docs/PageWordCount.md)

build.gradle

Lines changed: 4 additions & 4 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.5.0'
23+
version = '20.6.0'
2424

2525
buildscript {
2626
repositories {
@@ -45,7 +45,7 @@ targetCompatibility = JavaVersion.VERSION_1_7
4545

4646
install {
4747
repositories.mavenInstaller {
48-
pom.artifactId = 'aspose-cloud-pdf'
48+
pom.artifactId = 'aspose-pdf-cloud'
4949
}
5050
}
5151

@@ -70,8 +70,8 @@ dependencies {
7070
// https://github.com/novoda/bintray-release/wiki/Configuration-of-the-publish-closure
7171
publish {
7272
groupId = 'com.aspose'
73-
artifactId = 'aspose-cloud-pdf'
74-
publishVersion = '20.5.0'
73+
artifactId = 'aspose-pdf-cloud'
74+
publishVersion = '20.6.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/CheckBoxField.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
1111
**checked** | **Boolean** | Gets or sets state of check box. |
1212
**exportValue** | **String** | Gets or sets export value of CheckBox field. | [optional]
1313
**partialName** | **String** | Field name. | [optional]
14+
**fullName** | **String** | Full Field name. | [optional]
1415
**rect** | [**Rectangle**](Rectangle.md) | Field rectangle. | [optional]
1516
**value** | **String** | Field value. | [optional]
1617
**pageIndex** | **Integer** | Page index. |

docs/ChoiceField.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
88
**multiSelect** | **Boolean** | Gets or sets multiselection flag. | [optional]
99
**selected** | **Integer** | Gets or sets index of selected item. Numbering of items is started from 1. | [optional]
1010
**partialName** | **String** | Field name. | [optional]
11+
**fullName** | **String** | Full Field name. | [optional]
1112
**rect** | [**Rectangle**](Rectangle.md) | Field rectangle. | [optional]
1213
**value** | **String** | Field value. | [optional]
1314
**pageIndex** | **Integer** | Page index. |

docs/ComboBoxField.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
1212
**multiSelect** | **Boolean** | Gets or sets multiselection flag. | [optional]
1313
**selected** | **Integer** | Gets or sets index of selected item. Numbering of items is started from 1. | [optional]
1414
**partialName** | **String** | Field name. | [optional]
15+
**fullName** | **String** | Full Field name. | [optional]
1516
**rect** | [**Rectangle**](Rectangle.md) | Field rectangle. | [optional]
1617
**value** | **String** | Field value. | [optional]
1718
**pageIndex** | **Integer** | Page index. |

docs/FormField.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Provides form field.
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**partialName** | **String** | Field name. | [optional]
9+
**fullName** | **String** | Full Field name. | [optional]
910
**rect** | [**Rectangle**](Rectangle.md) | Field rectangle. | [optional]
1011
**value** | **String** | Field value. | [optional]
1112
**pageIndex** | **Integer** | Page index. |

docs/ListBoxField.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
1212
**multiSelect** | **Boolean** | Gets or sets multiselection flag. | [optional]
1313
**selected** | **Integer** | Gets or sets index of selected item. Numbering of items is started from 1. | [optional]
1414
**partialName** | **String** | Field name. | [optional]
15+
**fullName** | **String** | Full Field name. | [optional]
1516
**rect** | [**Rectangle**](Rectangle.md) | Field rectangle. | [optional]
1617
**value** | **String** | Field value. | [optional]
1718
**pageIndex** | **Integer** | Page index. |

docs/OutputFormat.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
# OutputFormat
3+
Enumeration for output type format.
4+
5+
## Enum
6+
Name | Description
7+
------------ | ------------
8+
**Zip** | Zip archive.
9+
**Folder** | Folder.
10+
11+
12+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
13+
14+

docs/PdfApi.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7733,7 +7733,7 @@ Name | Type | Description | Notes
77337733

77347734
<a name="putPdfInRequestToHtml"></a>
77357735
# **putPdfInRequestToHtml**
7736-
> AsposeResponse putPdfInRequestToHtml(outPath, additionalMarginWidthInPoints, compressSvgGraphicsIfAny, convertMarkedContentToLayers, defaultFontName, documentType, fixedLayout, imageResolution, minimalLineWidth, preventGlyphsGrouping, splitCssIntoPages, splitIntoPages, useZOrder, antialiasingProcessing, cssClassNamesPrefix, explicitListOfSavedPages, fontEncodingStrategy, fontSavingMode, htmlMarkupGenerationMode, lettersPositioningMethod, pagesFlowTypeDependsOnViewersScreenSize, partsEmbeddingMode, rasterImagesSavingMode, removeEmptyAreasOnTopAndBottom, saveShadowedTextsAsTransparentTexts, saveTransparentTexts, specialFolderForAllImages, specialFolderForSvgImages, trySaveTextUnderliningAndStrikeoutingInCss, storage, flowLayoutParagraphFullWidth, file)
7736+
> AsposeResponse putPdfInRequestToHtml(outPath, additionalMarginWidthInPoints, compressSvgGraphicsIfAny, convertMarkedContentToLayers, defaultFontName, documentType, fixedLayout, imageResolution, minimalLineWidth, preventGlyphsGrouping, splitCssIntoPages, splitIntoPages, useZOrder, antialiasingProcessing, cssClassNamesPrefix, explicitListOfSavedPages, fontEncodingStrategy, fontSavingMode, htmlMarkupGenerationMode, lettersPositioningMethod, pagesFlowTypeDependsOnViewersScreenSize, partsEmbeddingMode, rasterImagesSavingMode, removeEmptyAreasOnTopAndBottom, saveShadowedTextsAsTransparentTexts, saveTransparentTexts, specialFolderForAllImages, specialFolderForSvgImages, trySaveTextUnderliningAndStrikeoutingInCss, storage, flowLayoutParagraphFullWidth, outputFormat, file)
77377737
77387738
Converts PDF document (in request content) to Html format and uploads resulting file to storage.
77397739

@@ -7772,6 +7772,7 @@ Name | Type | Description | Notes
77727772
**trySaveTextUnderliningAndStrikeoutingInCss** | **Boolean**| PDF itself does not contain underlining markers for texts. It emulated with line situated under text. This option allows converter try guess that this or that line is a text&#39;s underlining and put this info into CSS instead of drawing of underlining graphically. | [optional]
77737773
**storage** | **String**| The document storage. | [optional]
77747774
**flowLayoutParagraphFullWidth** | **Boolean**| This attribute specifies full width paragraph text for Flow mode, FixedLayout &#x3D; false. | [optional]
7775+
**outputFormat** | **String**| This parameter determines the type of result. The zip archive will be uploaded into the storage if the parameter is &quot;Zip&quot; or missed (default). In case of the &quot;Folder&quot;, all resulting files and directories will be uploaded to the folder of the resulting HTML file. | [optional] [default to Zip] [enum: Zip, Folder]
77757776
**file** | **File**| A file to be converted. | [optional]
77767777

77777778
### Return type
@@ -8121,7 +8122,7 @@ Name | Type | Description | Notes
81218122

81228123
<a name="putPdfInStorageToHtml"></a>
81238124
# **putPdfInStorageToHtml**
8124-
> AsposeResponse putPdfInStorageToHtml(name, outPath, additionalMarginWidthInPoints, compressSvgGraphicsIfAny, convertMarkedContentToLayers, defaultFontName, documentType, fixedLayout, imageResolution, minimalLineWidth, preventGlyphsGrouping, splitCssIntoPages, splitIntoPages, useZOrder, antialiasingProcessing, cssClassNamesPrefix, explicitListOfSavedPages, fontEncodingStrategy, fontSavingMode, htmlMarkupGenerationMode, lettersPositioningMethod, pagesFlowTypeDependsOnViewersScreenSize, partsEmbeddingMode, rasterImagesSavingMode, removeEmptyAreasOnTopAndBottom, saveShadowedTextsAsTransparentTexts, saveTransparentTexts, specialFolderForAllImages, specialFolderForSvgImages, trySaveTextUnderliningAndStrikeoutingInCss, folder, storage, flowLayoutParagraphFullWidth)
8125+
> AsposeResponse putPdfInStorageToHtml(name, outPath, additionalMarginWidthInPoints, compressSvgGraphicsIfAny, convertMarkedContentToLayers, defaultFontName, documentType, fixedLayout, imageResolution, minimalLineWidth, preventGlyphsGrouping, splitCssIntoPages, splitIntoPages, useZOrder, antialiasingProcessing, cssClassNamesPrefix, explicitListOfSavedPages, fontEncodingStrategy, fontSavingMode, htmlMarkupGenerationMode, lettersPositioningMethod, pagesFlowTypeDependsOnViewersScreenSize, partsEmbeddingMode, rasterImagesSavingMode, removeEmptyAreasOnTopAndBottom, saveShadowedTextsAsTransparentTexts, saveTransparentTexts, specialFolderForAllImages, specialFolderForSvgImages, trySaveTextUnderliningAndStrikeoutingInCss, folder, storage, flowLayoutParagraphFullWidth, outputFormat)
81258126
81268127
Converts PDF document (located on storage) to Html format and uploads resulting file to storage
81278128

@@ -8162,6 +8163,7 @@ Name | Type | Description | Notes
81628163
**folder** | **String**| The document folder. | [optional]
81638164
**storage** | **String**| The document storage. | [optional]
81648165
**flowLayoutParagraphFullWidth** | **Boolean**| This attribute specifies full width paragraph text for Flow mode, FixedLayout &#x3D; false. | [optional]
8166+
**outputFormat** | **String**| This parameter determines the type of result. The zip archive will be uploaded into the storage if the parameter is &quot;Zip&quot; or missed (default). In case of the &quot;Folder&quot;, all resulting files and directories will be uploaded to the folder of the resulting HTML file. | [optional] [default to Zip] [enum: Zip, Folder]
81658167

81668168
### Return type
81678169

docs/RadioButtonField.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
1111
**multiSelect** | **Boolean** | Gets or sets multiselection flag. | [optional]
1212
**selected** | **Integer** | Gets or sets index of selected item. Numbering of items is started from 1. | [optional]
1313
**partialName** | **String** | Field name. | [optional]
14+
**fullName** | **String** | Full Field name. | [optional]
1415
**rect** | [**Rectangle**](Rectangle.md) | Field rectangle. | [optional]
1516
**value** | **String** | Field value. | [optional]
1617
**pageIndex** | **Integer** | Page index. |

0 commit comments

Comments
 (0)