This page serves as a guide for using the PDFCrowd API to convert between images formats in Ruby applications.
Below are Ruby 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.
begin # Call the API rescue Pdfcrowd::Error => why # Log the complete error STDERR.puts "PDFCrowd Error: #{why}" # Log the HTTP status code STDERR.puts "Status Code: #{why.getStatusCode()}" # Log the reason code STDERR.puts "Reason Code: #{why.getReasonCode()}" # Log the error message STDERR.puts "Error Message: #{why.getMessage()}" # Log the documentation link STDERR.puts "Documentation Link: #{why.getDocumentationLink()}" end
Refer to the Image to Image Ruby Reference for a description of all API methods.