Skip to content

Commit 075ee22

Browse files
committed
Update to v19.2
1 parent b03c39f commit 075ee22

28 files changed

+5217
-1202
lines changed

README.md

Lines changed: 26 additions & 4 deletions
Large diffs are not rendered by default.

sdk/aspose-cloud-pdf-android.iml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,17 +78,22 @@
7878
<sourceFolder url="file://$MODULE_DIR$/src/androidTest/rs" isTestSource="true" />
7979
<sourceFolder url="file://$MODULE_DIR$/src/androidTest/shaders" isTestSource="true" />
8080
<excludeFolder url="file://$MODULE_DIR$/build/android-profile" />
81+
<excludeFolder url="file://$MODULE_DIR$/build/docs" />
8182
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/bundles" />
8283
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/classes" />
8384
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/incremental" />
8485
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/incremental-safeguard" />
8586
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/jniLibs" />
8687
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/lint" />
88+
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/lint-cache" />
8789
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/manifests" />
8890
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/rs" />
8991
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/shaders" />
9092
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/transforms" />
93+
<excludeFolder url="file://$MODULE_DIR$/build/libs" />
9194
<excludeFolder url="file://$MODULE_DIR$/build/outputs" />
95+
<excludeFolder url="file://$MODULE_DIR$/build/publications" />
96+
<excludeFolder url="file://$MODULE_DIR$/build/reports" />
9297
<excludeFolder url="file://$MODULE_DIR$/build/tmp" />
9398
</content>
9499
<orderEntry type="jdk" jdkName="Android API 27 Platform" jdkType="Android SDK" />

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 = '19.1.0'
23+
version = '19.2.0'
2424

2525
buildscript {
2626
repositories {
@@ -96,7 +96,7 @@ dependencies {
9696
publish {
9797
groupId = 'com.aspose'
9898
artifactId = 'aspose-cloud-pdf-android'
99-
publishVersion = '19.1.0'
99+
publishVersion = '19.2.0'
100100
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.'
101101
licences = ['MIT']
102102
website = 'https://products.aspose.cloud/pdf/cloud'

sdk/docs/PdfApi.md

Lines changed: 348 additions & 18 deletions
Large diffs are not rendered by default.

sdk/docs/RedactionAnnotationsResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Represents response containing multiple redaction annotation objects
55
## Properties
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**annotations** | [**RedactionAnnotations**](RedactionAnnotations.md) | Ink annotations object | [optional]
8+
**annotations** | [**RedactionAnnotations**](RedactionAnnotations.md) | Redaction annotations object | [optional]
99
**code** | **Integer** | Response status code. |
1010
**status** | **String** | Response status. | [optional]
1111

sdk/docs/ScreenAnnotation.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
2+
# ScreenAnnotation
3+
Provides ScreenAnnotation.
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**title** | **String** | Get the annotation title. | [optional]
9+
**filePath** | **String** | Sets content file path. | [optional]
10+
**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
11+
**contents** | **String** | Get the annotation content. | [optional]
12+
**modified** | **String** | The date and time when the annotation was last modified. | [optional]
13+
**id** | **String** | Gets ID of the annotation. | [optional]
14+
**flags** | [**List&lt;AnnotationFlags&gt;**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
15+
**name** | **String** | Gets Name of the annotation. | [optional]
16+
**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
17+
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
18+
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
19+
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]
20+
**verticalAlignment** | [**VerticalAlignment**](VerticalAlignment.md) | Gets VerticalAlignment of the annotation. | [optional]
21+
**links** | [**List&lt;Link&gt;**](Link.md) | Link to the document. | [optional]
22+
23+
24+
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
25+
26+
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
# ScreenAnnotationResponse
3+
Represents response containing single screen annotation object
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**annotation** | [**ScreenAnnotation**](ScreenAnnotation.md) | Screen annotation object | [optional]
9+
**code** | **Integer** | Response status code. |
10+
**status** | **String** | Response status. | [optional]
11+
12+
13+
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
14+
15+

sdk/docs/ScreenAnnotations.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
# ScreenAnnotations
3+
Object representing a list of screen annotations.
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**list** | [**List&lt;ScreenAnnotation&gt;**](ScreenAnnotation.md) | List of screen annotations. | [optional]
9+
**links** | [**List&lt;Link&gt;**](Link.md) | Link to the document. | [optional]
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+
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
# ScreenAnnotationsResponse
3+
Represents response containing multiple screen annotation objects
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**annotations** | [**ScreenAnnotations**](ScreenAnnotations.md) | Screen annotations object | [optional]
9+
**code** | **Integer** | Response status code. |
10+
**status** | **String** | Response status. | [optional]
11+
12+
13+
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
14+
15+

sdk/docs/StampAnnotation.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
# StampAnnotation
3+
Provides StampAnnotation.
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**icon** | [**StampIcon**](StampIcon.md) | Gets or sets icon for rubber stamp. | [optional]
9+
**filePath** | **String** | Sets content file path. | [optional]
10+
**hasImage** | **Boolean** | Gets is image exist. | [optional]
11+
**creationDate** | **String** | The date and time when the annotation was created. | [optional]
12+
**subject** | **String** | Get the annotation subject. | [optional]
13+
**title** | **String** | Get the annotation title. | [optional]
14+
**richText** | **String** | Get the annotation RichText. | [optional]
15+
**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
16+
**contents** | **String** | Get the annotation content. | [optional]
17+
**modified** | **String** | The date and time when the annotation was last modified. | [optional]
18+
**id** | **String** | Gets ID of the annotation. | [optional]
19+
**flags** | [**List&lt;AnnotationFlags&gt;**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
20+
**name** | **String** | Gets Name of the annotation. | [optional]
21+
**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
22+
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
23+
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
24+
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]
25+
**verticalAlignment** | [**VerticalAlignment**](VerticalAlignment.md) | Gets VerticalAlignment of the annotation. | [optional]
26+
**links** | [**List&lt;Link&gt;**](Link.md) | Link to the document. | [optional]
27+
28+
29+
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
30+
31+

0 commit comments

Comments
 (0)