This page serves as a guide for using the PDFCrowd API to convert between images formats in Python applications.
Below are Python examples to help you quickly get started with the API. Explore our additional examples for more insights.
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: # print the error sys.stderr.write('Pdfcrowd Error: {}\n'.format(why)) # print the error code sys.stderr.write('Pdfcrowd Error Code: {}\n'.format(why.getCode())) # print the error message sys.stderr.write('Pdfcrowd Error Message: {}\n'.format(why.getMessage()))
Refer to the Image to Image Python Reference for a description of all API methods.