PPT to JPG Python API

Convert PPT files to JPG images using our Python PPT to JPG API.

Built for seamless integration

Use a simple API to sign and validate documents in your own platform or automate it with tools like Zapier, without dealing with complex signature logic or infrastructure.

Try it instantly on Zapier

No code? No problem. Connect Nutrient DWS Processor API to your favorite apps with Zapier to automate document workflows and save time on repetitive tasks.

Simple and transparent pricing

Select a package that suits your needs according to the number of credits you wish to spend. Each API tool and action has a specific credit cost.

Nutrient is used by

Try it out

This example will convert your uploaded PPT file to a JPG image.

1

Use Your Free API Calls

Sign up and receive 100 credits for free, or log in to automatically add your API key to sample code. If you are not sure how credits are consumed read more in our pricing documentation , or check out this guide on calculating credit usage.

2

Add a File

Add a PPT file named document.ppt to your project folder. You can also use our sample file. The file name is case sensitive. Make sure the file name matches the file name in the sample code.

3

Run the Code

Copy the code and run it from the same folder you added the files to. For more information, see our language-specific getting started guides.

4

View the Results

Open image.jpg in your project folder to view the results.

import requests
import json

response = requests.request(
  'POST',
  'https://api.nutrient.io/build',
  headers = {
    'Authorization': 'Bearer your_api_key_here'
  },
  files = {
    'document': open('document.ppt', 'rb')
  },
  data = {
    'instructions': json.dumps({
      'parts': [
        {
          'file': 'document'
        }
      ],
      'output': {
        'type': 'image',
        'format': 'jpg',
        'dpi': 500
      }
    })
  },
  stream = True
)

if response.ok:
  with open('image.jpg', 'wb') as fd:
    for chunk in response.iter_content(chunk_size=8096):
      fd.write(chunk)
else:
  print(response.text)
  exit()
Using Postman? Download our official collection and start using the API with a single click. Read more 

Your API Key

Rendering a Single Page

The default is to render the first page, but you can also render any other page of the document by adding the pages option.

This will render the fifth page (remember pages are indexed starting from 0):

"output": {
  "type": "image",
  "pages": {"start": 4, "end": 4},
  "format": "jpg",
  "width": 500
}

Rendering Multiple Pages

In addition to rendering just a single page (the default is the first), you can also render multiple pages at the same time. Simply add the pages option.

Note: You can only render 50 pages in a single request. Requesting more than 50 pages will result in a status 400 being returned.

The following example will return a ZIP file containing all pages:

"output": {
  "type": "image",
  "pages": {"start": 0, "end": -1},
  "format": "jpg",
  "width": 500
}

You can also render a subset of pages. This will render pages 2, 3, and 4:

"output": {
  "type": "image",
  "pages": {"start": 1, "end": 3},
  "format": "jpg",
  "width": 500
}

The files in the ZIP file will be named <page_number>.jpg

Controlling Image Dimensions

You can give the output images a specific width or height, or you can render them with a specific resolution. You can only choose one of those three options. Specifying more than one will result in a status 400 being returned.

Depending on which option you choose, one or both dimensions will be determined based on the dimensions of the page in the document. The following will go into detail about each of the three options.

Note: There is a limit to the final resolution of the resulting images. Any image is not allowed to be bigger than 34 million pixels (4960×7016px), regardless of the aspect ratio. Requesting a bigger image will result in a status 400 being returned.

You can specify the width . In this case, all rendered pages will have the same width, but they’ll have varying heights depending on the page dimensions in the document:

"output": {
  "type": "image",
  "format": "jpg",
  "width": 768
}

You can specify the height . In this case, all rendered pages will have the same height, but they’ll have varying widths depending on the page dimensions in the document:

"output": {
  "type": "image",
  "format": "jpg",
  "height": 1024
}

And finally, you can specify the dpi . In this case, the width and height of the rendered pages depends only on the page dimensions:

"output": {
  "type": "image",
  "format": "jpg",
  "dpi": 72
}

Security is our top priority

No document storage

No input or resulting documents are stored on our infrastructure. All files are deleted as soon as a request finishes. Alternatively, check out our self-hosted product.

HTTPS encryption

All communication between your application and Nutrient is done via HTTPS to ensure your data is encrypted when it’s sent to us.

Safe payment processing

All payments are handled by Paddle. Nutrient DWS Processor API never has direct access to any of your payment data.

Ready to try it?

Create an account to get your API key and start making API calls.