How render PNG instead of PDF
Sometimes, you want to share a report on slack or through whatsapp, so you'd prefer to generate a PNG report instead of PDF. Here's how to do it!
Last updated
Sometimes, you want to share a report on slack or through whatsapp, so you'd prefer to generate a PNG report instead of PDF. Here's how to do it!
Last updated
To generate the same layout but as a .PNG instead of a .PDF file, you can use the same endpoints /v1/pdf/sync
and /v1/pdf/async
, but passing an extra parameter convertToImage:true
on the body payload.
If you want to generate the image synchronously, you can use this guide:
Or if you want to generate the image asynchronously, you can use this guide:
Here's a request example for a synchronous render:
The result will be the same signedUrl described on the guides, but with a .PNG file instead.