1
1
# Aspose.PDF Cloud
2
2
- API version: 2.0
3
- - Package version: 19.1 .0
3
+ - Package version: 19.2 .0
4
4
5
5
[ 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.
6
6
@@ -37,7 +37,7 @@ Add this dependency to your project's POM:
37
37
<dependency >
38
38
<groupId >com.aspose</groupId >
39
39
<artifactId >aspose-cloud-pdf</artifactId >
40
- <version >19.1 .0</version >
40
+ <version >19.2 .0</version >
41
41
<scope >compile</scope >
42
42
</dependency >
43
43
```
@@ -47,7 +47,7 @@ Add this dependency to your project's POM:
47
47
Add this dependency to your project's build file:
48
48
49
49
``` groovy
50
- compile "com.aspose:aspose-cloud-pdf:19.1 .0"
50
+ compile "com.aspose:aspose-cloud-pdf:19.2 .0"
51
51
```
52
52
53
53
### Others
@@ -58,7 +58,7 @@ At first generate the JAR by executing:
58
58
59
59
Then manually install the following JARs:
60
60
61
- * target/aspose-cloud-pdf-19.1 .0.jar
61
+ * target/aspose-cloud-pdf-19.2 .0.jar
62
62
* target/lib/* .jar
63
63
64
64
## Getting Started
@@ -151,9 +151,11 @@ Class | Method | HTTP request | Description
151
151
* PdfApi* | [ ** getDocumentProperties** ] ( docs/PdfApi.md#getDocumentProperties ) | ** GET** /pdf/\{ name}/documentproperties | Read document properties.
152
152
* PdfApi* | [ ** getDocumentProperty** ] ( docs/PdfApi.md#getDocumentProperty ) | ** GET** /pdf/\{ name}/documentproperties/\{ propertyName} | Read document property by name.
153
153
* PdfApi* | [ ** getDocumentRedactionAnnotations** ] ( docs/PdfApi.md#getDocumentRedactionAnnotations ) | ** GET** /pdf/\{ name}/annotations/redaction | Read document redaction annotations.
154
+ * PdfApi* | [ ** getDocumentScreenAnnotations** ] ( docs/PdfApi.md#getDocumentScreenAnnotations ) | ** GET** /pdf/\{ name}/annotations/screen | Read document screen annotations.
154
155
* PdfApi* | [ ** getDocumentSoundAnnotations** ] ( docs/PdfApi.md#getDocumentSoundAnnotations ) | ** GET** /pdf/\{ name}/annotations/sound | Read document sound annotations.
155
156
* PdfApi* | [ ** getDocumentSquareAnnotations** ] ( docs/PdfApi.md#getDocumentSquareAnnotations ) | ** GET** /pdf/\{ name}/annotations/square | Read document square annotations.
156
157
* PdfApi* | [ ** getDocumentSquigglyAnnotations** ] ( docs/PdfApi.md#getDocumentSquigglyAnnotations ) | ** GET** /pdf/\{ name}/annotations/squiggly | Read document squiggly annotations.
158
+ * PdfApi* | [ ** getDocumentStampAnnotations** ] ( docs/PdfApi.md#getDocumentStampAnnotations ) | ** GET** /pdf/\{ name}/annotations/stamp | Read document stamp annotations.
157
159
* PdfApi* | [ ** getDocumentStrikeOutAnnotations** ] ( docs/PdfApi.md#getDocumentStrikeOutAnnotations ) | ** GET** /pdf/\{ name}/annotations/strikeout | Read document StrikeOut annotations.
158
160
* PdfApi* | [ ** getDocumentTextAnnotations** ] ( docs/PdfApi.md#getDocumentTextAnnotations ) | ** GET** /pdf/\{ name}/annotations/text | Read document text annotations.
159
161
* PdfApi* | [ ** getDocumentUnderlineAnnotations** ] ( docs/PdfApi.md#getDocumentUnderlineAnnotations ) | ** GET** /pdf/\{ name}/annotations/underline | Read document underline annotations.
@@ -205,9 +207,11 @@ Class | Method | HTTP request | Description
205
207
* PdfApi* | [ ** getPagePolygonAnnotations** ] ( docs/PdfApi.md#getPagePolygonAnnotations ) | ** GET** /pdf/\{ name}/pages/\{ pageNumber}/annotations/polygon | Read document page polygon annotations.
206
208
* PdfApi* | [ ** getPagePopupAnnotations** ] ( docs/PdfApi.md#getPagePopupAnnotations ) | ** GET** /pdf/\{ name}/pages/\{ pageNumber}/annotations/popup | Read document page popup annotations.
207
209
* PdfApi* | [ ** getPageRedactionAnnotations** ] ( docs/PdfApi.md#getPageRedactionAnnotations ) | ** GET** /pdf/\{ name}/pages/\{ pageNumber}/annotations/redaction | Read document page redaction annotations.
210
+ * PdfApi* | [ ** getPageScreenAnnotations** ] ( docs/PdfApi.md#getPageScreenAnnotations ) | ** GET** /pdf/\{ name}/pages/\{ pageNumber}/annotations/screen | Read document page screen annotations.
208
211
* PdfApi* | [ ** getPageSoundAnnotations** ] ( docs/PdfApi.md#getPageSoundAnnotations ) | ** GET** /pdf/\{ name}/pages/\{ pageNumber}/annotations/sound | Read document page sound annotations.
209
212
* PdfApi* | [ ** getPageSquareAnnotations** ] ( docs/PdfApi.md#getPageSquareAnnotations ) | ** GET** /pdf/\{ name}/pages/\{ pageNumber}/annotations/square | Read document page square annotations.
210
213
* PdfApi* | [ ** getPageSquigglyAnnotations** ] ( docs/PdfApi.md#getPageSquigglyAnnotations ) | ** GET** /pdf/\{ name}/pages/\{ pageNumber}/annotations/squiggly | Read document page squiggly annotations.
214
+ * PdfApi* | [ ** getPageStampAnnotations** ] ( docs/PdfApi.md#getPageStampAnnotations ) | ** GET** /pdf/\{ name}/pages/\{ pageNumber}/annotations/stamp | Read document page stamp annotations.
211
215
* PdfApi* | [ ** getPageStrikeOutAnnotations** ] ( docs/PdfApi.md#getPageStrikeOutAnnotations ) | ** GET** /pdf/\{ name}/pages/\{ pageNumber}/annotations/strikeout | Read document page StrikeOut annotations.
212
216
* PdfApi* | [ ** getPageText** ] ( docs/PdfApi.md#getPageText ) | ** GET** /pdf/\{ name}/pages/\{ pageNumber}/text | Read page text items.
213
217
* PdfApi* | [ ** getPageTextAnnotations** ] ( docs/PdfApi.md#getPageTextAnnotations ) | ** GET** /pdf/\{ name}/pages/\{ pageNumber}/annotations/text | Read document page text annotations.
@@ -231,10 +235,13 @@ Class | Method | HTTP request | Description
231
235
* PdfApi* | [ ** getPopupAnnotation** ] ( docs/PdfApi.md#getPopupAnnotation ) | ** GET** /pdf/\{ name}/annotations/popup/\{ annotationId} | Read document page popup annotation by ID.
232
236
* PdfApi* | [ ** getPsInStorageToPdf** ] ( docs/PdfApi.md#getPsInStorageToPdf ) | ** GET** /pdf/create/ps | Convert PS file (located on storage) to PDF format and return resulting file in response.
233
237
* PdfApi* | [ ** getRedactionAnnotation** ] ( docs/PdfApi.md#getRedactionAnnotation ) | ** GET** /pdf/\{ name}/annotations/redaction/\{ annotationId} | Read document page redaction annotation by ID.
238
+ * PdfApi* | [ ** getScreenAnnotation** ] ( docs/PdfApi.md#getScreenAnnotation ) | ** GET** /pdf/\{ name}/annotations/screen/\{ annotationId} | Read document page screen annotation by ID.
234
239
* PdfApi* | [ ** getSoundAnnotation** ] ( docs/PdfApi.md#getSoundAnnotation ) | ** GET** /pdf/\{ name}/annotations/sound/\{ annotationId} | Read document page sound annotation by ID.
235
240
* PdfApi* | [ ** getSoundAnnotationData** ] ( docs/PdfApi.md#getSoundAnnotationData ) | ** GET** /pdf/\{ name}/annotations/sound/\{ annotationId}/data | Read document page sound annotation by ID.
236
241
* PdfApi* | [ ** getSquareAnnotation** ] ( docs/PdfApi.md#getSquareAnnotation ) | ** GET** /pdf/\{ name}/annotations/square/\{ annotationId} | Read document page square annotation by ID.
237
242
* PdfApi* | [ ** getSquigglyAnnotation** ] ( docs/PdfApi.md#getSquigglyAnnotation ) | ** GET** /pdf/\{ name}/annotations/squiggly/\{ annotationId} | Read document page squiggly annotation by ID.
243
+ * PdfApi* | [ ** getStampAnnotation** ] ( docs/PdfApi.md#getStampAnnotation ) | ** GET** /pdf/\{ name}/annotations/stamp/\{ annotationId} | Read document page stamp annotation by ID.
244
+ * PdfApi* | [ ** getStampAnnotationData** ] ( docs/PdfApi.md#getStampAnnotationData ) | ** GET** /pdf/\{ name}/annotations/stamp/\{ annotationId}/data | Read document page stamp annotation by ID.
238
245
* PdfApi* | [ ** getStrikeOutAnnotation** ] ( docs/PdfApi.md#getStrikeOutAnnotation ) | ** GET** /pdf/\{ name}/annotations/strikeout/\{ annotationId} | Read document page StrikeOut annotation by ID.
239
246
* PdfApi* | [ ** getSvgInStorageToPdf** ] ( docs/PdfApi.md#getSvgInStorageToPdf ) | ** GET** /pdf/create/svg | Convert SVG file (located on storage) to PDF format and return resulting file in response.
240
247
* PdfApi* | [ ** getText** ] ( docs/PdfApi.md#getText ) | ** GET** /pdf/\{ name}/text | Read document text.
@@ -268,9 +275,11 @@ Class | Method | HTTP request | Description
268
275
* PdfApi* | [ ** postPagePolyLineAnnotations** ] ( docs/PdfApi.md#postPagePolyLineAnnotations ) | ** POST** /pdf/\{ name}/pages/\{ pageNumber}/annotations/polyline | Add document page polyline annotations.
269
276
* PdfApi* | [ ** postPagePolygonAnnotations** ] ( docs/PdfApi.md#postPagePolygonAnnotations ) | ** POST** /pdf/\{ name}/pages/\{ pageNumber}/annotations/polygon | Add document page polygon annotations.
270
277
* PdfApi* | [ ** postPageRedactionAnnotations** ] ( docs/PdfApi.md#postPageRedactionAnnotations ) | ** POST** /pdf/\{ name}/pages/\{ pageNumber}/annotations/redaction | Add document page redaction annotations.
278
+ * PdfApi* | [ ** postPageScreenAnnotations** ] ( docs/PdfApi.md#postPageScreenAnnotations ) | ** POST** /pdf/\{ name}/pages/\{ pageNumber}/annotations/screen | Add document page screen annotations.
271
279
* PdfApi* | [ ** postPageSoundAnnotations** ] ( docs/PdfApi.md#postPageSoundAnnotations ) | ** POST** /pdf/\{ name}/pages/\{ pageNumber}/annotations/sound | Add document page sound annotations.
272
280
* PdfApi* | [ ** postPageSquareAnnotations** ] ( docs/PdfApi.md#postPageSquareAnnotations ) | ** POST** /pdf/\{ name}/pages/\{ pageNumber}/annotations/square | Add document page square annotations.
273
281
* PdfApi* | [ ** postPageSquigglyAnnotations** ] ( docs/PdfApi.md#postPageSquigglyAnnotations ) | ** POST** /pdf/\{ name}/pages/\{ pageNumber}/annotations/squiggly | Add document page squiggly annotations.
282
+ * PdfApi* | [ ** postPageStampAnnotations** ] ( docs/PdfApi.md#postPageStampAnnotations ) | ** POST** /pdf/\{ name}/pages/\{ pageNumber}/annotations/stamp | Add document page stamp annotations.
274
283
* PdfApi* | [ ** postPageStrikeOutAnnotations** ] ( docs/PdfApi.md#postPageStrikeOutAnnotations ) | ** POST** /pdf/\{ name}/pages/\{ pageNumber}/annotations/strikeout | Add document page StrikeOut annotations.
275
284
* PdfApi* | [ ** postPageTextAnnotations** ] ( docs/PdfApi.md#postPageTextAnnotations ) | ** POST** /pdf/\{ name}/pages/\{ pageNumber}/annotations/text | Add document page text annotations.
276
285
* PdfApi* | [ ** postPageTextReplace** ] ( docs/PdfApi.md#postPageTextReplace ) | ** POST** /pdf/\{ name}/pages/\{ pageNumber}/text/replace | Page' ; s replace text method.
@@ -281,6 +290,7 @@ Class | Method | HTTP request | Description
281
290
* PdfApi* | [ ** postSplitDocument** ] ( docs/PdfApi.md#postSplitDocument ) | ** POST** /pdf/\{ name}/split | Split document to parts.
282
291
* PdfApi* | [ ** putAddNewPage** ] ( docs/PdfApi.md#putAddNewPage ) | ** PUT** /pdf/\{ name}/pages | Add new page to end of the document.
283
292
* PdfApi* | [ ** putAddText** ] ( docs/PdfApi.md#putAddText ) | ** PUT** /pdf/\{ name}/pages/\{ pageNumber}/text | Add text to PDF document page.
293
+ * PdfApi* | [ ** putAnnotationsFlatten** ] ( docs/PdfApi.md#putAnnotationsFlatten ) | ** PUT** /pdf/\{ name}/annotations/flatten | Flattens the annotations of the specified types
284
294
* PdfApi* | [ ** putCaretAnnotation** ] ( docs/PdfApi.md#putCaretAnnotation ) | ** PUT** /pdf/\{ name}/annotations/caret/\{ annotationId} | Replace document caret annotation
285
295
* PdfApi* | [ ** putCircleAnnotation** ] ( docs/PdfApi.md#putCircleAnnotation ) | ** PUT** /pdf/\{ name}/annotations/circle/\{ annotationId} | Replace document circle annotation
286
296
* PdfApi* | [ ** putCreate** ] ( docs/PdfApi.md#putCreate ) | ** PUT** /storage/file | Upload a specific file
@@ -348,12 +358,15 @@ Class | Method | HTTP request | Description
348
358
* PdfApi* | [ ** putPsInStorageToPdf** ] ( docs/PdfApi.md#putPsInStorageToPdf ) | ** PUT** /pdf/\{ name}/create/ps | Convert PS file (located on storage) to PDF format and upload resulting file to storage.
349
359
* PdfApi* | [ ** putRedactionAnnotation** ] ( docs/PdfApi.md#putRedactionAnnotation ) | ** PUT** /pdf/\{ name}/annotations/redaction/\{ annotationId} | Replace document redaction annotation
350
360
* PdfApi* | [ ** putReplaceImage** ] ( docs/PdfApi.md#putReplaceImage ) | ** PUT** /pdf/\{ name}/images/\{ imageId} | Replace document image.
361
+ * PdfApi* | [ ** putScreenAnnotation** ] ( docs/PdfApi.md#putScreenAnnotation ) | ** PUT** /pdf/\{ name}/annotations/screen/\{ annotationId} | Replace document screen annotation
351
362
* PdfApi* | [ ** putSearchableDocument** ] ( docs/PdfApi.md#putSearchableDocument ) | ** PUT** /pdf/\{ name}/ocr | Create searchable PDF document. Generate OCR layer for images in input PDF document.
352
363
* PdfApi* | [ ** putSetProperty** ] ( docs/PdfApi.md#putSetProperty ) | ** PUT** /pdf/\{ name}/documentproperties/\{ propertyName} | Add/update document property.
353
364
* PdfApi* | [ ** putSoundAnnotation** ] ( docs/PdfApi.md#putSoundAnnotation ) | ** PUT** /pdf/\{ name}/annotations/sound/\{ annotationId} | Replace document sound annotation
354
365
* PdfApi* | [ ** putSoundAnnotationDataExtract** ] ( docs/PdfApi.md#putSoundAnnotationDataExtract ) | ** PUT** /pdf/\{ name}/annotations/sound/\{ annotationId}/data/extract | Extract document sound annotation content to storage
355
366
* PdfApi* | [ ** putSquareAnnotation** ] ( docs/PdfApi.md#putSquareAnnotation ) | ** PUT** /pdf/\{ name}/annotations/square/\{ annotationId} | Replace document square annotation
356
367
* PdfApi* | [ ** putSquigglyAnnotation** ] ( docs/PdfApi.md#putSquigglyAnnotation ) | ** PUT** /pdf/\{ name}/annotations/squiggly/\{ annotationId} | Replace document squiggly annotation
368
+ * PdfApi* | [ ** putStampAnnotation** ] ( docs/PdfApi.md#putStampAnnotation ) | ** PUT** /pdf/\{ name}/annotations/stamp/\{ annotationId} | Replace document stamp annotation
369
+ * PdfApi* | [ ** putStampAnnotationDataExtract** ] ( docs/PdfApi.md#putStampAnnotationDataExtract ) | ** PUT** /pdf/\{ name}/annotations/stamp/\{ annotationId}/data/extract | Extract document stamp annotation content to storage
357
370
* PdfApi* | [ ** putStrikeOutAnnotation** ] ( docs/PdfApi.md#putStrikeOutAnnotation ) | ** PUT** /pdf/\{ name}/annotations/strikeout/\{ annotationId} | Replace document StrikeOut annotation
358
371
* PdfApi* | [ ** putSvgInStorageToPdf** ] ( docs/PdfApi.md#putSvgInStorageToPdf ) | ** PUT** /pdf/\{ name}/create/svg | Convert SVG file (located on storage) to PDF format and upload resulting file to storage.
359
372
* PdfApi* | [ ** putTextAnnotation** ] ( docs/PdfApi.md#putTextAnnotation ) | ** PUT** /pdf/\{ name}/annotations/text/\{ annotationId} | Replace document text annotation
@@ -429,6 +442,7 @@ Class | Method | HTTP request | Description
429
442
- [ SoundIcon] ( docs/SoundIcon.md )
430
443
- [ SplitResult] ( docs/SplitResult.md )
431
444
- [ Stamp] ( docs/Stamp.md )
445
+ - [ StampIcon] ( docs/StampIcon.md )
432
446
- [ StampType] ( docs/StampType.md )
433
447
- [ TextHorizontalAlignment] ( docs/TextHorizontalAlignment.md )
434
448
- [ TextIcon] ( docs/TextIcon.md )
@@ -512,6 +526,9 @@ Class | Method | HTTP request | Description
512
526
- [ RedactionAnnotationResponse] ( docs/RedactionAnnotationResponse.md )
513
527
- [ RedactionAnnotations] ( docs/RedactionAnnotations.md )
514
528
- [ RedactionAnnotationsResponse] ( docs/RedactionAnnotationsResponse.md )
529
+ - [ ScreenAnnotationResponse] ( docs/ScreenAnnotationResponse.md )
530
+ - [ ScreenAnnotations] ( docs/ScreenAnnotations.md )
531
+ - [ ScreenAnnotationsResponse] ( docs/ScreenAnnotationsResponse.md )
515
532
- [ SignatureVerifyResponse] ( docs/SignatureVerifyResponse.md )
516
533
- [ SoundAnnotationResponse] ( docs/SoundAnnotationResponse.md )
517
534
- [ SoundAnnotations] ( docs/SoundAnnotations.md )
@@ -524,6 +541,9 @@ Class | Method | HTTP request | Description
524
541
- [ SquigglyAnnotationResponse] ( docs/SquigglyAnnotationResponse.md )
525
542
- [ SquigglyAnnotations] ( docs/SquigglyAnnotations.md )
526
543
- [ SquigglyAnnotationsResponse] ( docs/SquigglyAnnotationsResponse.md )
544
+ - [ StampAnnotationResponse] ( docs/StampAnnotationResponse.md )
545
+ - [ StampAnnotations] ( docs/StampAnnotations.md )
546
+ - [ StampAnnotationsResponse] ( docs/StampAnnotationsResponse.md )
527
547
- [ StorageExistResponse] ( docs/StorageExistResponse.md )
528
548
- [ StrikeOutAnnotationResponse] ( docs/StrikeOutAnnotationResponse.md )
529
549
- [ StrikeOutAnnotations] ( docs/StrikeOutAnnotations.md )
@@ -542,6 +562,7 @@ Class | Method | HTTP request | Description
542
562
- [ MovieAnnotation] ( docs/MovieAnnotation.md )
543
563
- [ PopupAnnotation] ( docs/PopupAnnotation.md )
544
564
- [ RedactionAnnotation] ( docs/RedactionAnnotation.md )
565
+ - [ ScreenAnnotation] ( docs/ScreenAnnotation.md )
545
566
- [ CaretAnnotation] ( docs/CaretAnnotation.md )
546
567
- [ CommonFigureAnnotation] ( docs/CommonFigureAnnotation.md )
547
568
- [ FileAttachmentAnnotation] ( docs/FileAttachmentAnnotation.md )
@@ -553,6 +574,7 @@ Class | Method | HTTP request | Description
553
574
- [ PopupAnnotationWithParent] ( docs/PopupAnnotationWithParent.md )
554
575
- [ SoundAnnotation] ( docs/SoundAnnotation.md )
555
576
- [ SquigglyAnnotation] ( docs/SquigglyAnnotation.md )
577
+ - [ StampAnnotation] ( docs/StampAnnotation.md )
556
578
- [ StrikeOutAnnotation] ( docs/StrikeOutAnnotation.md )
557
579
- [ TextAnnotation] ( docs/TextAnnotation.md )
558
580
- [ UnderlineAnnotation] ( docs/UnderlineAnnotation.md )
0 commit comments