Image to PDF / Node.js Documentation
Overview
This page serves as a guide for using the PDFCrowd API to convert images to PDF in Node.js applications.
Installation
Quick Start
Below are Node.js 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(why) { // Log the complete error console.error("PDFCrowd Error: " + why); // Log the HTTP status code console.error("Status Code: " + why.getStatusCode()); // Log the reason code console.error("Reason Code: " + why.getReasonCode()); // Log the error message console.error("Error Message: " + why.getMessage()); // Log the documentation link console.error("Documentation Link: " + why.getDocumentationLink()); }
Troubleshooting
- If you are receiving an error, refer to the API Status Codes for more information.
- Use 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.
Method Reference
Refer to the Image to PDF Node.js Reference for a description of all API methods.