Image to Image - Java Guide

This page serves as a guide for using the Pdfcrowd API to convert between images formats in Java applications. The API is designed for easy use and straightforward integration.

Installation

Download pdfcrowd-5.18.1-java.zip, unzip it and copy pdfcrowd-5.18.1.jar to your CLASSPATH.

Check out other installation options such as Maven or GitHub.

Quick Start

Below are Java examples to help you quickly get started with the API. Explore our additional examples for more insights.

Authentication

Error Handling

It is recommended that you implement error handling to catch errors the API may return. Effective error handling is vital as it ensures application stability and provides clearer diagnostics. See the example code below for guidance on implementing error handling, and refer to this list of status codes for more information.

try {
    // call the API 
}
catch(Pdfcrowd.Error why) {
    // print the error
    System.err.println("Pdfcrowd Error: " + why);

    // print the error code
    System.err.println("Pdfcrowd Error Code: " + why.getCode());

    // print the error message
    System.err.println("Pdfcrowd Error Message: " + why.getMessage());
}

Troubleshooting

  • If you are receiving an error, refer to the API Status Codes for more information.
  • Utilize setDebugLog() and getDebugLogUrl() to obtain detailed information about the conversion process, including load errors, load times, browser console output, etc.
  • Consult the FAQ for answers to common questions.
  • Contact us if you need assistance or if there is a feature you are missing.

API Method Reference

Refer to the Image to Image Java Reference for a description of all API methods.