HEIC to PDF
Convert HEIC/HEIF images to a PDF document.
GET
1 credit
/v1/convert/heic-to-pdf
curl -OJ "https://convert.toolkitapi.io/v1/convert/heic-to-pdf?url=https://toolkitapi.io/photo.heic"
import httpx
resp = httpx.get(
"https://convert.toolkitapi.io/v1/convert/heic-to-pdf?url=https://toolkitapi.io/photo.heic",
)
print(resp.json())
const resp = await fetch("https://convert.toolkitapi.io/v1/convert/heic-to-pdf?url=https://toolkitapi.io/photo.heic", {
});
const data = await resp.json();
console.log(data);
# See curl example
Response
200 OK
Binary PDF file streamed as a download (Content-Type: application/pdf)
Description
Convert HEIC/HEIF images to a PDF document.
How to Use
1
1. GET this endpoint with the HEIC `url`.
2
2. Save the streamed PDF.
About This Tool
Wraps a HEIC/HEIF image inside a PDF at the image's native aspect ratio. Useful when you need to print an iPhone photo, include it in a PDF-only workflow, or share with systems that don't support image formats directly.
Orientation is auto-corrected from EXIF before embedding.
Why Use This Tool
- Printing — Many printers accept PDF but not HEIC
- Document uploads — Forms that only accept PDF can receive photo-based submissions
- Bundling — Combine multiple HEIC photos into downstream PDF workflows
- Email — Share iPhone photos as PDF attachments for guaranteed compatibility
Frequently Asked Questions
Does the image fill the page?
The image is scaled to fit within the page with reasonable margins, preserving its aspect ratio.
Can I combine multiple HEIC files into one PDF?
Not via this endpoint. Use the generic document converter with an HTML source that references multiple images.
Is EXIF preserved?
EXIF is not embedded in PDFs by this endpoint. Orientation is applied visually before embedding.
Start using HEIC to PDF now
Get your free API key and make your first request in under a minute.