aspose_pdf_cloud 23.8.0 → 23.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +8 -11
- data/docs/PdfApi.md +3 -0
- data/lib/aspose_pdf_cloud/api/pdf_api.rb +9 -0
- data/lib/aspose_pdf_cloud/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8326de7f92b83f2cecd37acd2ac707f0eff033241020811183cbfcc061409612
|
4
|
+
data.tar.gz: 0d81993338b094970035d2fc95bd2b6e39b4a79d60bc61764ebd01bd56ed87fc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d67a280e8a64f1e7947e3717134857104cf4764bc99a8170ad7089f61194bf6808330660ab8ed6b581e553ec0dc12f0c1ff26652c9ab6511ffbc6b36d54ff3c
|
7
|
+
data.tar.gz: 4dd4dd021d971971f2954fa7e6edccf14177f7ebb58fdd9837d117ceafc964711ff0d73ed1e2ef60af9acb9d42cc6a83141e487d7e3951d2ccf6b2ccc8cefddb
|
data/README.md
CHANGED
@@ -29,16 +29,13 @@ XLS, XLSX, PPTX, DOC, DOCX, MobiXML, JPEG, EMF, PNG, BMP, GIF, TIFF, Text
|
|
29
29
|
## Read PDF Formats
|
30
30
|
MHT, PCL, PS, XSLFO, MD
|
31
31
|
|
32
|
-
## Enhancements in Version 23.
|
33
|
-
- Support to
|
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.
|
37
34
|
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
|
38
35
|
|
39
|
-
## Bugs fixed in Version 23.
|
40
|
-
-
|
41
|
-
-
|
36
|
+
## Bugs fixed in Version 23.9
|
37
|
+
- Rotate Property not working with FreeTextAnnotation.
|
38
|
+
- PutAnnotationsFlatten not working correctly when passing multiple annotation types.
|
42
39
|
|
43
40
|
## Installation
|
44
41
|
|
@@ -53,15 +50,15 @@ gem build aspose_pdf_cloud.gemspec
|
|
53
50
|
Then either install the gem locally:
|
54
51
|
|
55
52
|
```shell
|
56
|
-
gem install ./aspose_pdf_cloud-23.
|
53
|
+
gem install ./aspose_pdf_cloud-23.9.0.gem
|
57
54
|
```
|
58
|
-
(for development, run `gem install --dev ./aspose_pdf_cloud-23.
|
55
|
+
(for development, run `gem install --dev ./aspose_pdf_cloud-23.9.0.gem` to install the development dependencies)
|
59
56
|
|
60
57
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
61
58
|
|
62
59
|
Finally add this to the Gemfile:
|
63
60
|
|
64
|
-
gem 'aspose_pdf_cloud', '~> 23.
|
61
|
+
gem 'aspose_pdf_cloud', '~> 23.9.0'
|
65
62
|
|
66
63
|
### Install from Git
|
67
64
|
|
data/docs/PdfApi.md
CHANGED
@@ -4015,6 +4015,7 @@ Name | Type | Description | Notes
|
|
4015
4015
|
**type** | **String**| Type of PdfA format. |
|
4016
4016
|
**folder** | **String**| The document folder. | [optional]
|
4017
4017
|
**storage** | **String**| The document storage. | [optional]
|
4018
|
+
**password** | **String**| The password (Base64). | [optional]
|
4018
4019
|
|
4019
4020
|
### Return type
|
4020
4021
|
|
@@ -8143,6 +8144,7 @@ Name | Type | Description | Notes
|
|
8143
8144
|
**out_path** | **String**| Full resulting filename (ex. /folder1/folder2/result.pdf) |
|
8144
8145
|
**type** | **String**| Type of PdfA format. |
|
8145
8146
|
**storage** | **String**| The document storage. | [optional]
|
8147
|
+
**password** | **String**| The password (Base64). | [optional]
|
8146
8148
|
**file** | **File**| A file to be converted. | [optional]
|
8147
8149
|
|
8148
8150
|
### Return type
|
@@ -8530,6 +8532,7 @@ Name | Type | Description | Notes
|
|
8530
8532
|
**type** | **String**| Type of PdfA format. |
|
8531
8533
|
**folder** | **String**| The document folder. | [optional]
|
8532
8534
|
**storage** | **String**| The document storage. | [optional]
|
8535
|
+
**password** | **String**| The password (Base64). | [optional]
|
8533
8536
|
|
8534
8537
|
### Return type
|
8535
8538
|
|
@@ -11248,6 +11248,7 @@ module AsposePdfCloud
|
|
11248
11248
|
# @param [Hash] opts the optional parameters
|
11249
11249
|
# @option opts [String] :folder The document folder.
|
11250
11250
|
# @option opts [String] :storage The document storage.
|
11251
|
+
# @option opts [String] :password The password (Base64).
|
11251
11252
|
# @return [File]
|
11252
11253
|
def get_pdf_in_storage_to_pdf_a(name, type, opts = {})
|
11253
11254
|
@api_client.request_token_if_needed
|
@@ -11269,6 +11270,7 @@ module AsposePdfCloud
|
|
11269
11270
|
# @param [Hash] opts the optional parameters
|
11270
11271
|
# @option opts [String] :folder The document folder.
|
11271
11272
|
# @option opts [String] :storage The document storage.
|
11273
|
+
# @option opts [String] :password The password (Base64).
|
11272
11274
|
# @return [Array<(File, Fixnum, Hash)>] File data, response status code and response headers
|
11273
11275
|
def get_pdf_in_storage_to_pdf_a_with_http_info(name, type, opts = {})
|
11274
11276
|
if @api_client.config.debugging
|
@@ -11294,6 +11296,7 @@ module AsposePdfCloud
|
|
11294
11296
|
query_params[:'type'] = type
|
11295
11297
|
query_params[:'folder'] = opts[:'folder'] if !opts[:'folder'].nil?
|
11296
11298
|
query_params[:'storage'] = opts[:'storage'] if !opts[:'storage'].nil?
|
11299
|
+
query_params[:'password'] = opts[:'password'] if !opts[:'password'].nil?
|
11297
11300
|
|
11298
11301
|
# header parameters
|
11299
11302
|
header_params = {}
|
@@ -24301,6 +24304,7 @@ module AsposePdfCloud
|
|
24301
24304
|
# @param type Type of PdfA format.
|
24302
24305
|
# @param [Hash] opts the optional parameters
|
24303
24306
|
# @option opts [String] :storage The document storage.
|
24307
|
+
# @option opts [String] :password The password (Base64).
|
24304
24308
|
# @option opts [File] :file A file to be converted.
|
24305
24309
|
# @return [AsposeResponse]
|
24306
24310
|
def put_pdf_in_request_to_pdf_a(out_path, type, opts = {})
|
@@ -24322,6 +24326,7 @@ module AsposePdfCloud
|
|
24322
24326
|
# @param type Type of PdfA format.
|
24323
24327
|
# @param [Hash] opts the optional parameters
|
24324
24328
|
# @option opts [String] :storage The document storage.
|
24329
|
+
# @option opts [String] :password The password (Base64).
|
24325
24330
|
# @option opts [File] :file A file to be converted.
|
24326
24331
|
# @return [Array<(AsposeResponse, Fixnum, Hash)>] AsposeResponse data, response status code and response headers
|
24327
24332
|
def put_pdf_in_request_to_pdf_a_with_http_info(out_path, type, opts = {})
|
@@ -24348,6 +24353,7 @@ module AsposePdfCloud
|
|
24348
24353
|
query_params[:'outPath'] = out_path
|
24349
24354
|
query_params[:'type'] = type
|
24350
24355
|
query_params[:'storage'] = opts[:'storage'] if !opts[:'storage'].nil?
|
24356
|
+
query_params[:'password'] = opts[:'password'] if !opts[:'password'].nil?
|
24351
24357
|
|
24352
24358
|
# header parameters
|
24353
24359
|
header_params = {}
|
@@ -25545,6 +25551,7 @@ module AsposePdfCloud
|
|
25545
25551
|
# @param [Hash] opts the optional parameters
|
25546
25552
|
# @option opts [String] :folder The document folder.
|
25547
25553
|
# @option opts [String] :storage The document storage.
|
25554
|
+
# @option opts [String] :password The password (Base64).
|
25548
25555
|
# @return [AsposeResponse]
|
25549
25556
|
def put_pdf_in_storage_to_pdf_a(name, out_path, type, opts = {})
|
25550
25557
|
@api_client.request_token_if_needed
|
@@ -25567,6 +25574,7 @@ module AsposePdfCloud
|
|
25567
25574
|
# @param [Hash] opts the optional parameters
|
25568
25575
|
# @option opts [String] :folder The document folder.
|
25569
25576
|
# @option opts [String] :storage The document storage.
|
25577
|
+
# @option opts [String] :password The password (Base64).
|
25570
25578
|
# @return [Array<(AsposeResponse, Fixnum, Hash)>] AsposeResponse data, response status code and response headers
|
25571
25579
|
def put_pdf_in_storage_to_pdf_a_with_http_info(name, out_path, type, opts = {})
|
25572
25580
|
if @api_client.config.debugging
|
@@ -25597,6 +25605,7 @@ module AsposePdfCloud
|
|
25597
25605
|
query_params[:'type'] = type
|
25598
25606
|
query_params[:'folder'] = opts[:'folder'] if !opts[:'folder'].nil?
|
25599
25607
|
query_params[:'storage'] = opts[:'storage'] if !opts[:'storage'].nil?
|
25608
|
+
query_params[:'password'] = opts[:'password'] if !opts[:'password'].nil?
|
25600
25609
|
|
25601
25610
|
# header parameters
|
25602
25611
|
header_params = {}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aspose_pdf_cloud
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 23.
|
4
|
+
version: 23.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aspose PDF Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-09-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|