Skip to content

Commit 6773e51

Browse files
update to 23.8.0
1 parent 45ae169 commit 6773e51

File tree

4 files changed

+207
-5
lines changed

4 files changed

+207
-5
lines changed

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,16 @@ These SDKs are now fully supported. If you have any questions, see any bugs or h
99

1010
Extract Text & Images of a PDF document online https://products.aspose.app/pdf/parser.
1111

12-
## Enhancements in Version 23.7
13-
- Form Field MappingName property support.
12+
## Enhancements in Version 23.8
13+
- Support to split password protected PDF documents.
14+
- Support to convert password Protected PDF to Xlsx.
15+
- Support to convert password Protected PDF to Excel.
16+
- Replace a single image using multiple Image Ids.
1417
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
1518

16-
## Bugs fixed in Version 23.7
17-
- Adding Radio Button throws Internal Error.
19+
## Bugs fixed in Version 23.8
20+
- The putMergeDocuments API method in Node.js Throws Gateway Error.
21+
- Text Replacement Changes the Background.
1822

1923
## Installation
2024
```

api_client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ func (c *APIClient) prepareRequest (
176176

177177
// set custom header
178178
headerParams["x-aspose-client"] = "go sdk"
179-
headerParams["x-aspose-client-version"] = "23.7.0"
179+
headerParams["x-aspose-client-version"] = "23.8.0"
180180

181181
// Detect postBody type and post.
182182
if postBody != nil {

docs/PdfApi.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,7 @@ Method | HTTP request | Description
336336
[**PutRadioButtonField**](PdfApi.md#PutRadioButtonField) | **Put** /pdf/{name}/fields/radiobutton/{fieldName} | Replace document RadioButton field
337337
[**PutRedactionAnnotation**](PdfApi.md#PutRedactionAnnotation) | **Put** /pdf/{name}/annotations/redaction/{annotationId} | Replace document redaction annotation
338338
[**PutReplaceImage**](PdfApi.md#PutReplaceImage) | **Put** /pdf/{name}/images/{imageId} | Replace document image.
339+
[**PutReplaceMultipleImage**](PdfApi.md#PutReplaceMultipleImage) | **Put** /pdf/{name}/images/replace | Replace document multiple image.
339340
[**PutScreenAnnotation**](PdfApi.md#PutScreenAnnotation) | **Put** /pdf/{name}/annotations/screen/{annotationId} | Replace document screen annotation
340341
[**PutScreenAnnotationDataExtract**](PdfApi.md#PutScreenAnnotationDataExtract) | **Put** /pdf/{name}/annotations/screen/{annotationId}/data/extract | Extract document screen annotation content to storage
341342
[**PutSearchableDocument**](PdfApi.md#PutSearchableDocument) | **Put** /pdf/{name}/ocr | Create searchable PDF document. Generate OCR layer for images in input PDF document.
@@ -5302,6 +5303,7 @@ Name | Type | Description | Notes
53025303
**uniformWorksheets** | **bool**| Uniform worksheets |
53035304
**folder** | **string**| The document folder. |
53045305
**storage** | **string**| The document storage. |
5306+
**password** | **string**| The password (Base64). |
53055307

53065308
### Return type
53075309

@@ -5337,6 +5339,7 @@ Name | Type | Description | Notes
53375339
**uniformWorksheets** | **bool**| Uniform worksheets |
53385340
**folder** | **string**| The document folder. |
53395341
**storage** | **string**| The document storage. |
5342+
**password** | **string**| The password (Base64). |
53405343

53415344
### Return type
53425345

@@ -8465,6 +8468,7 @@ Name | Type | Description | Notes
84658468
**to** | **int32**| End page if defined. |
84668469
**storage** | **string**| The document storage. |
84678470
**folder** | **string**| The document folder. |
8471+
**password** | **string**| Base64 encoded password. |
84688472

84698473
### Return type
84708474

@@ -8498,6 +8502,7 @@ Name | Type | Description | Notes
84988502
**options** | [**SplitRangePdfOptions**](SplitRangePdfOptions.md)| The splitting options. |
84998503
**storage** | **string**| The document storage. |
85008504
**folder** | **string**| The document folder. |
8505+
**password** | **string**| Base64 encoded password. |
85018506

85028507
### Return type
85038508

@@ -10719,6 +10724,7 @@ Name | Type | Description | Notes
1071910724
**scaleFactor** | **float64**| Scale factor (Obsolete) |
1072010725
**uniformWorksheets** | **bool**| Uniform worksheets |
1072110726
**storage** | **string**| The document storage. |
10727+
**password** | **string**| The password (Base64). |
1072210728
**file** | ***os.File**| A file to be converted. |
1072310729

1072410730
### Return type
@@ -10754,6 +10760,7 @@ Name | Type | Description | Notes
1075410760
**scaleFactor** | **float64**| Scale factor (Obsolete) |
1075510761
**uniformWorksheets** | **bool**| Uniform worksheets |
1075610762
**storage** | **string**| The document storage. |
10763+
**password** | **string**| The password (Base64). |
1075710764
**file** | ***os.File**| A file to be converted. |
1075810765

1075910766
### Return type
@@ -11211,6 +11218,7 @@ Name | Type | Description | Notes
1121111218
**uniformWorksheets** | **bool**| Uniform worksheets |
1121211219
**folder** | **string**| The document folder. |
1121311220
**storage** | **string**| The document storage. |
11221+
**password** | **string**| The password (Base64). |
1121411222

1121511223
### Return type
1121611224

@@ -11248,6 +11256,7 @@ Name | Type | Description | Notes
1124811256
**uniformWorksheets** | **bool**| Uniform worksheets |
1124911257
**folder** | **string**| The document folder. |
1125011258
**storage** | **string**| The document storage. |
11259+
**password** | **string**| The password (Base64). |
1125111260

1125211261
### Return type
1125311262

@@ -11603,6 +11612,41 @@ Name | Type | Description | Notes
1160311612

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

11615+
# **PutReplaceMultipleImage**
11616+
> ImagesResponse PutReplaceMultipleImage(name, imageIds, optional)
11617+
Replace document multiple image.
11618+
11619+
### Required Parameters
11620+
11621+
Name | Type | Description | Notes
11622+
------------- | ------------- | ------------- | -------------
11623+
**name** | **string**| The document name. |
11624+
**imageIds** | **[]string**| The image IDs. |
11625+
**optional** | **map[string]interface{}** | optional parameters | nil if no parameters
11626+
11627+
### Optional Parameters
11628+
Optional parameters are passed through a map[string]interface{}.
11629+
11630+
Name | Type | Description | Notes
11631+
------------- | ------------- | ------------- | -------------
11632+
**name** | **string**| The document name. |
11633+
**imageIds** | **[]string**| The image IDs. |
11634+
**imageFilePath** | **string**| Path to image file if specified. Request content is used otherwise. |
11635+
**storage** | **string**| The document storage. |
11636+
**folder** | **string**| The document folder. |
11637+
**image** | ***os.File**| Image file. |
11638+
11639+
### Return type
11640+
11641+
[**ImagesResponse**](ImagesResponse.md)
11642+
11643+
### HTTP request headers
11644+
11645+
- **Content-Type**: multipart/form-data
11646+
- **Accept**: application/json
11647+
11648+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
11649+
1160611650
# **PutScreenAnnotation**
1160711651
> ScreenAnnotationResponse PutScreenAnnotation(name, annotationId, annotation, optional)
1160811652
Replace document screen annotation

0 commit comments

Comments
 (0)