Java API Client Library

The Java API client library enables easy implementation of the Pdfcrowd API in your Java applications.

You can choose from the following install options:

install icon Download pdfcrowd-5.18.1-java.zip, unzip it and copy pdfcrowd-5.18.1.jar to your CLASSPATH.
install icon You can install the client library from Maven by adding the following dependency section to your pom.xml dependencies:
<dependency>
  <groupId>com.pdfcrowd</groupId>
  <artifactId>pdfcrowd</artifactId>
  <version>5.18.1</version>
  <scope>compile</scope>
</dependency>
install icon You can install the client library by Gradle (e.g. for Android Studio) from Maven by adding the following line to your gradle dependencies:
compile 'com.pdfcrowd:pdfcrowd:5.18.1'
install icon Clone pdfcrowd-java from Github and build the library.
git clone https://github.com/pdfcrowd/pdfcrowd-java
cd pdfcrowd-java
mvn install