Image to PDF in Python
Overview
The official PDFCrowd Python client library provides access to the Image to PDF API.
Installation
Quick Start
The examples below cover the basic conversion flow. See additional examples for more scenarios.
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 except pdfcrowd.Error as why: # Log the complete error sys.stderr.write('PDFCrowd Error: {}\n'.format(why)) # Log the HTTP status code sys.stderr.write('Status Code: {}\n'.format(why.getStatusCode())) # Log the reason code sys.stderr.write('Reason Code: {}\n'.format(why.getReasonCode())) # Log the error message sys.stderr.write('Error Message: {}\n'.format(why.getMessage())) # Log the documentation link sys.stderr.write('Documentation Link: {}\n'.format(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.