You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository contains GroupDocs.Conversion Cloud SDK for Java source code. This SDK allows you to work with GroupDocs.Conversion Cloud REST APIs in your Java applications.
3
+
# Java SDK to Convert Documents in the Cloud
4
4
5
-
## Requirements
5
+
[GroupDocs.Conversion Cloud SDK for Java](https://products.groupdocs.cloud/conversion/java) wraps GroupDocs.Conversion RESTful APIs so you may integrate **Document Conversion** features in your own apps with zero initial cost.
6
+
7
+
GroupDocs.Conversion Cloud API allows the developers to convert between 50+ file formats including Word documents, Excel spreadsheets, PowerPoint presentations, PDF, OpenDocument files, images & more.
8
+
9
+
## Document Conversion REST API
10
+
11
+
- Convert the whole document to the desired target format.
12
+
- Convert specific document page(s) or a page range.
13
+
- Auto-detect source document format without requiring the file extension.
14
+
- Load source document with extended options, such as specify password for password-protected documents.
15
+
- Load specific part of the document.
16
+
- Show or hide document comments.
17
+
- Obtain all supported conversion formats list.
18
+
- Replace missing fonts with any other font.
19
+
- Add text or image watermarks to any page.
20
+
- Specify resolution and quality for resultant images.
21
+
- Extract metadata & basic information about the source document.
22
+
- Integrated storage API.
23
+
24
+
Check out the [Developer's Guide](https://docs.groupdocs.cloud/conversion/developer-guide/) to know more about GroupDocs.Conversion REST API.
## Get Started with GroupDocs.Conversion Cloud SDK for Java
50
+
51
+
First create an account at [GroupDocs for Cloud](https://dashboard.groupdocs.cloud/) and get your application information. Next, follow the installation steps as given below.
52
+
53
+
### Requirements
6
54
7
55
Building the API client library requires [Maven](https://maven.apache.org/) to be installed.
8
56
9
-
## Installation
57
+
###Installation
10
58
11
-
To install the API client library to your local Maven repository, simply execute:
59
+
Simply execute the following to install the API client library to your local Maven repository.
12
60
13
61
```shell
14
62
mvn install
15
63
```
16
64
17
-
To deploy it to a remote Maven repository instead, configure the settings of the repository and execute:
65
+
Configure the settings of the repository and execute the following to deploy it to a remote Maven repository instead.
18
66
19
67
```shell
20
68
mvn deploy
21
69
```
22
70
23
71
Refer to the [official documentation](https://maven.apache.org/plugins/maven-deploy-plugin/usage.html) for more information.
24
72
25
-
### Maven users
73
+
####Maven
26
74
27
-
Add following repository and dependency to your project's POM
75
+
Add following repository and dependency to your project's POM.
28
76
29
77
```xml
30
78
<repository>
@@ -43,67 +91,39 @@ Add following repository and dependency to your project's POM
43
91
</dependency>
44
92
```
45
93
46
-
### Others
47
-
48
-
At first generate the JAR by executing:
49
-
50
-
mvn package
94
+
#### Others
51
95
52
-
Then manually install the following JARs:
96
+
First generate the JAR by executing `mvn package`, then manually install the following JARs.
53
97
54
98
* target/groupdocs-conversion-cloud-20.11.jar
55
99
* target/lib/*.jar
56
100
57
-
## Getting Started
58
-
59
-
Please follow the [installation](#installation) instruction and execute the following Java code:
0 commit comments