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

# Convert Images to PDF API

Convert uploaded images, image URLs, or base64 bytes into PDF files or signed links. Useful for document workflows, sharing, and printing.

## Endpoints

| Method | Path | Description | Atoms |
| --- | --- | --- | --- |
| POST | `convert/image-file/pdf-file` | What it does Converts an uploaded image file into a PDF and returns the generated PDF as a binary d… | 60 |
| POST | `convert/image-file/pdf-url` | What it does Converts an uploaded image file into a PDF and returns a signed link to the generated… | 60 |
| POST | `convert/image-url/pdf-file` | What it does Converts a remote image at the provided URL into a PDF and returns the generated PDF a… | 60 |
| POST | `convert/image-url/pdf-url` | What it does Converts a remote image URL into a PDF and returns a signed link to the generated PDF.… | 60 |
| POST | `convert/image-base64/pdf-file` | What it does Converts a base64-encoded image sent in the request body into a PDF and returns the PD… | 60 |
| POST | `convert/image-base64/pdf-url` | What it does Converts a base64-encoded image into a PDF and returns a signed link to the generated… | 60 |

## About

## What it does
Image to PDF Converter turns uploaded images, remote image URLs, or base64-encoded image data into PDF output. Send a single image file, a URL, or base64 bytes, and get back either a downloadable PDF or a signed link to the generated file.

Use the file endpoints when you already have an image upload, the URL endpoints when the source lives elsewhere on the web, and the base64 endpoints when your app stores image data inline. Supported inputs include .png, .jpeg, .jpg, .gif, .svg, .tif, and .bmp for file uploads, with an optional `landscape` query parameter on the download variants to control page orientation.

The response is straightforward: download endpoints return a binary PDF, and link endpoints return a JSON object with a `data` field containing a URI. That makes the service easy to drop into document workflows, user-generated content pipelines, or admin tools that need to package images as PDFs for sharing, storage, or printing.

If you need to standardise image documents before emailing them, archiving them, or passing them into another system, Image to PDF Converter gives you a direct conversion path without extra file handling logic.

## Usage

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