This page serves as a guide for using the Pdfcrowd API to convert between images formats in Ruby applications.
The API is designed for easy use and straightforward integration.
Installation
You can install the client library from rubygems.org
Below are Ruby examples to help you quickly get started with the API.
Explore our additional examples for more insights.
require"pdfcrowd"begin# create the API client instanceclient=Pdfcrowd::ImageToImageClient.new("your_username","your_apikey")# configure the conversionclient.setOutputFormat("jpg")# run the conversion and write the result to a fileclient.convertFileToFile("/path/to/logo.png","logo.jpg")rescuePdfcrowd::Error=>whySTDERR.puts"Pdfcrowd Error: #{why}"raiseend
require"pdfcrowd"begin# create the API client instanceclient=Pdfcrowd::ImageToImageClient.new("your_username","your_apikey")# configure the conversionclient.setOutputFormat("jpg")# run the conversion and write the result to a fileclient.convertUrlToFile("https://pdfcrowd.com/static/images/logo.png","logo.jpg")rescuePdfcrowd::Error=>whySTDERR.puts"Pdfcrowd Error: #{why}"raiseend
require"pdfcrowd"begin# create the API client instanceclient=Pdfcrowd::ImageToImageClient.new("your_username","your_apikey")# configure the conversionclient.setOutputFormat("jpg")# run the conversion and write the result to a fileclient.convertRawDataToFile(open('/path/to/logo.png','rb').read(),"logo.jpg")rescuePdfcrowd::Error=>whySTDERR.puts"Pdfcrowd Error: #{why}"raiseend
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.
begin# call the API rescuePdfcrowd::Error=>why# print the errorSTDERR.puts"Pdfcrowd Error: #{why}"# print the error codeSTDERR.puts"Pdfcrowd Error Code: #{why.getCode()}"# print the error messageSTDERR.puts"Pdfcrowd Error Message: #{why.getMessage()}"end
Troubleshooting
If you are receiving an error, refer to the
API Status Codes for more information.
Utilize
setDebugLog() and getDebugLogUrl()
to obtain detailed information about the conversion process, including
load errors, load times, browser console output, etc.