This page serves as a guide for using the PDFCrowd API to convert PDF into images in Java applications.
Below are Java examples to help you quickly get started with the API. Explore our additional examples for more insights.
For a multi-page PDF, the API returns a ZIP archive containing an image for each page. For a single-page PDF, the output is directly an image (e.g., PNG). To determine the output format, use isZippedOutput(). You can enforce the use of a ZIP archive by using setForceZip().
To access the API, you will need to use your PDFCrowd username and API key. For initial testing, you may use the following demo credentials without registering:
demo
ce544b6ea52a5621fb9d55f8b542d14d
To obtain your personal API credentials, start a free trial or purchase the API license.
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()); }
Refer to the PDF to Image Java Reference for a description of all API methods.