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.Viewer Cloud SDK for Java source code. This SDK allows you to work with GroupDocs.Viewer Cloud REST APIs in your Java applications.
2
3
3
-
# Java SDK to View Documents in the Cloud
4
-
5
-
[GroupDocs.Viewer Cloud SDK for Java](https://products.groupdocs.cloud/viewer/java) wraps GroupDocs.Viewer RESTful APIs so you may integrate Document Viewing features in your own apps with zero initial cost.
6
-
7
-
GroupDocs.Viewer REST API allows the developers to view & render a number of popular files formats including Word documents, Excel spreadsheets, PowerPoint presentations, CAD drawings, Visio diagram, PDF, OpenDocument formats, emails & images.
8
-
9
-
## Document Viewer Services in REST
10
-
11
-
- 90+ supported file formats.
12
-
- View documents as PDF, HTML or images.
13
-
- Render documents as raster & vector images.
14
-
- Render documents with comments & notes.
15
-
- Flip or rotate documents pages at 90, 180 or 270 degrees.
16
-
- Reorder document pages.
17
-
- Render hidden, consecutive or selected document pages.
18
-
- Watermark PDF, image or HTML output pages.
19
-
- Render with custom fonts as well as replace any missing fonts.
20
-
- Load password-protected documents.
21
-
- Extract attachment information such as attachment count & names.
22
-
- Extract document information like file format, page count, size and visibility, text coordinates, and so on.
23
-
- Integrated storage API.
24
-
25
-
Check out the [Developer's Guide](https://docs.groupdocs.cloud/viewer/developer-guide/) to know more about GroupDocs.Viewer REST API.
## Get Started with GroupDocs.Viewer Cloud SDK for Java
49
-
50
-
First create an account at [GroupDocs for Cloud](https://dashboard.groupdocs.cloud/) and get your application information. Next, follow the steps as below.
51
-
52
-
### Requirements
4
+
## Requirements
53
5
54
6
Building the API client library requires [Maven](https://maven.apache.org/) to be installed.
55
7
56
-
###Installation
8
+
## Installation
57
9
58
10
To install the API client library to your local Maven repository, execute:
59
11
@@ -69,9 +21,9 @@ mvn deploy
69
21
70
22
Refer to the [official documentation](https://maven.apache.org/plugins/maven-deploy-plugin/usage.html) for more information.
71
23
72
-
####Maven
24
+
### Maven users
73
25
74
-
Add following repository and dependency to your project's POM.
26
+
Add following repository and dependency to your project's POM
75
27
76
28
```xml
77
29
<repository>
@@ -85,51 +37,66 @@ Add following repository and dependency to your project's POM.
85
37
<dependency>
86
38
<groupId>com.groupdocs</groupId>
87
39
<artifactId>groupdocs-viewer-cloud</artifactId>
88
-
<version>20.5</version>
40
+
<version>21.3</version>
89
41
<scope>compile</scope>
90
42
</dependency>
91
43
```
92
44
93
-
####Others
45
+
### Others
94
46
95
-
At first generate the JAR by executing`mvn package`, then manually install the following JARs.
47
+
At first generate the JAR by executing:
96
48
97
-
* target/groupdocs-viewer-cloud-20.5.jar
98
-
* target/lib/*.jar
49
+
mvn package
99
50
100
-
## Protect PDF while Rendering DOCX as PDF
101
-
102
-
```java
103
-
// For complete examples and data files, please go to https://github.com/groupdocs-viewer-cloud/groupdocs-viewer-cloud-java-samples
104
-
// Get Client Id and Client Secret from https://dashboard.groupdocs.cloud
0 commit comments