---
title: Convert PDF to Image API
slug: convert-pdf-pages-to-images
url: https://apyhub.com/apyhub/service/convert-pdf-pages-to-images
provider: ApyHub
categories: [File Conversion, File Manipulation]
auth: api_key
---

# Convert PDF to Image API

Convert PDF pages into JPG or PNG images from a file, URL, or base64 input. Returns a ZIP download or a download_url for the generated images.

## Endpoints

| Method | Path | Description | Atoms |
| --- | --- | --- | --- |
| POST | `/convert/pdf/image/sync/file/download` | What it does Converts an uploaded PDF file into page images and returns the result as a downloadabl… | 150 |
| POST | `/convert/pdf/image/sync/file/url` | What it does Converts the pages of an uploaded PDF file into images and returns a download URL for… | 150 |
| POST | `/convert/pdf/image/sync/url/download` | What it does Converts the PDF at the given public URL into page images and returns the result as a… | 150 |
| POST | `/convert/pdf/image/sync/url/url` | What it does Converts a PDF available at a URL into page images and returns a JSON object containin… | 150 |
| POST | `/convert/pdf/image/sync/base64/download` | What it does Converts a PDF provided as base64-encoded content into image files for its pages, and… | 150 |
| POST | `/convert/pdf/image/sync/base64/url` | What it does Converts a PDF provided as a base64 string into page images and returns a download URL… | 150 |

## About

## What it does

PDF to Images converts each page of a PDF into image files. Send a PDF as a file upload, a publicly accessible PDF URL, or base64-encoded PDF content, and choose the rendering quality and output image format.

Use the upload endpoints when you already have the PDF in your application, or the URL endpoints when the document is hosted elsewhere. The service accepts `quality` values of `low`, `medium`, `high`, or `ultra`, and `img_format` values of `jpg` or `png`. For URL-based requests, provide `file_url`; for base64 requests, provide `pdf_base64`.

The response depends on the endpoint you choose. Download variants return the converted pages as a binary ZIP file. URL variants return a JSON object containing `download_url`, which points to the generated ZIP in storage.

Use PDF to Images when you need page images for previews, thumbnails, document workflows, or downstream image processing where a PDF is the source format and individual page images are easier to handle.

## Usage

Authenticate with an ApyHub API key in the `apy-token` header.
Full docs and a live playground: https://apyhub.com/apyhub/service/convert-pdf-pages-to-images
