Renda Guide
  • What is Renda.io?
  • Microservices
    • HTML to PDF
    • PDF Transformation
    • Time based Authentication
    • Communication
    • QR Code Generation
  • Integrations
    • Floe
      • Generate PDF
      • Send SMS
    • SAP On-premise
    • SAP Fiori
    • SAP Conversational AI
    • MS Teams
  • Code Samples
    • SAP On-premise
    • SAP BTP - ABAP in the cloud
  • FAQs
  • Changelog
  • Open Source Credits
  • Page 1
Powered by GitBook
On this page
  • Transform PDF to PNG image
  • Generate PNG Image
  • Transform PDF to Postscript
  • Generate Postscript document

Was this helpful?

  1. Microservices

PDF Transformation

PreviousHTML to PDFNextTime based Authentication

Last updated 2 years ago

Was this helpful?

The following API services are now available for PDF transformation.

PDF transformation APIs are available in EU region only. Please make sure you are subscribed to a specific region before making API calls.

Transform PDF to PNG image

Convert single and multi page PDF documents into static PNGs.

Generate PNG Image

POST https://api-eu.renda.io/converter/generateImage

This API enables conversion of PDF document into PNG Image.

A single page PDF will return PNG payload as a response.

A multi-page PDF will be transformed into multiple PNGs based on the number of pages in the PDF document. A zip archived payload of the PNGs will be returned as a API response. Region specific URLs: Ireland(Europe): https://api-eu.renda.io/converter/generateImage

Headers

Name
Type
Description

x-api-key*

String

Renda API Key

Content-type*

String

multipart/form-data

Request Body

Name
Type
Description

pdfDocument*

File

PDF Document

{
    //Single page PDF will return application/png as API response
    //Multi page PDF will return application/zip as API response containing one PNG for each page
}
{
    // Response from server
}
{
"message":"We are unable to service your request. Things to verify: 
1) A valid API Key should be passed in ‘x-api-key’ request header parameter.
 2) An active Renda.io subscription 3) API being invoked must be Subscribed 
 using the Subscribe button in Renda developer portal. Please refer to Renda 
 documentation for more details - https://documentation.renda.io"
}

Transform PDF to Postscript

Convert single and multi page PDF documents into printer friendly postscript document.

Generate Postscript document

POST https://api-eu.renda.io/converter/generatePostscript

This API enables conversion of PDF document into postscript document.

Headers

Name
Type
Description

x-api-key*

String

Renda API Key

Content-Type*

String

multipart/form-data

Request Body

Name
Type
Description

pdfDocument*

File

PDF Document

{
    // Payload with application/postscript will be returned
}
{
    // Error Response from server
}
{
"message":"We are unable to service your request. Things to verify: 
1) A valid API Key should be passed in ‘x-api-key’ request header parameter.
 2) An active Renda.io subscription 3) API being invoked must be Subscribed 
 using the Subscribe button in Renda developer portal. Please refer to Renda 
 documentation for more details - https://documentation.renda.io"
}

Convert PDF to PNG image
Convert PDF to Postscript