← All articles 6 min read

How to Convert HEIC to PDF (Free, No Software)

You need to convert HEIC to PDF — for a job application, a visa submission, a client portfolio, or an insurance claim. The problem: your iPhone photos are in HEIC format, and most PDF tools don't know what to do with them.

Here's how to convert HEIC to PDF on every platform, from a one-click browser tool to command-line automation.

Method 1: Convert HEIC to PDF in Your Browser (Pixotter)

Pixotter's Image to PDF tool converts HEIC files directly to PDF without any software install. It runs entirely in your browser using WebAssembly — your photos never leave your device.

How it works:

  1. Open Pixotter's Image to PDF converter.
  2. Drop your HEIC files onto the page. Pixotter's engine (wasm-vips) reads HEIC natively — no conversion step needed.
  3. Each image becomes a page in the output PDF.
  4. Click Convert and download your PDF.

Batch support: Drop multiple HEIC files at once to create a multi-page PDF. Ten vacation photos become a ten-page document in seconds.

Why this is the best option for most people: No install, no sign-up, no file uploads to a remote server. Works on Windows, Mac, Linux, Chromebook, and any device with a modern browser. Since everything runs client-side, there's no file size limit imposed by a server and no privacy risk from uploading personal photos.

Try it yourself

Convert between any image format instantly — free, instant, no signup. Your images never leave your browser.

Convert Images →

Method 2: macOS Preview

If you're on a Mac, Preview handles HEIC to PDF natively — no extra software needed.

Single file:

  1. Open the HEIC file in Preview (double-click or right-click → Open With → Preview).
  2. Go to FileExport as PDF.
  3. Choose your destination folder and save.

Multiple files into one PDF:

  1. Select all the HEIC files in Finder.
  2. Right-click → Open WithPreview.
  3. In Preview's sidebar, select all images (Command+A).
  4. Go to FilePrint.
  5. In the print dialog, click the PDF dropdown at the bottom-left → Save as PDF.

This creates a single PDF with each photo on its own page. Preview preserves the original resolution.

Method 3: Windows (Two-Step Process)

Windows doesn't handle HEIC-to-PDF in a single step. You need to convert HEIC to a compatible format first, then create the PDF.

Step 1 — Convert HEIC to JPG:

Use Pixotter's HEIC to JPG converter for instant browser-based conversion, or install the free HEIF Image Extensions from the Microsoft Store to open HEIC files natively in Windows Photos.

Step 2 — Create the PDF:

The two-step process is cumbersome for large batches. For 20+ files, Pixotter's Image to PDF tool handles the HEIC-to-PDF conversion directly in one step.

Method 4: iPhone and iPad (Built-in)

Your iPhone can convert any photo to PDF using a hidden trick in the print system — no app needed.

  1. Open the Photos app and select the image(s) you want to convert.
  2. Tap the Share button.
  3. Tap Print.
  4. On the print preview screen, pinch-zoom outward on the preview thumbnail with two fingers. This turns the print preview into a full PDF.
  5. Tap the Share button again on the expanded preview.
  6. Choose Save to Files to save the PDF.

This works because iOS generates a PDF internally for the print system. The pinch-zoom gesture promotes it from a print job to a shareable document.

For multiple photos: select several in Photos before tapping Share. The resulting PDF will have one photo per page.

Method 5: Command Line (ImageMagick)

For developers and automation workflows, ImageMagick converts HEIC to PDF directly from the terminal.

# ImageMagick 7.1.1-29+ with libheif
# Single file
magick input.heic output.pdf

# Multiple HEIC files into one multi-page PDF
magick *.heic combined.pdf

# With specific page size (A4) and quality
magick input.heic -resize 2480x3508 -gravity center -extent 2480x3508 output.pdf

ImageMagick delegates HEIC decoding to libheif. Verify HEIC support is available with:

magick identify -list format | grep HEIC

On Ubuntu/Debian, install the dependencies:

sudo apt install imagemagick libheif-dev

On macOS with Homebrew:

brew install imagemagick

Method Comparison

Method Platform Batch Multi-Page PDF Offline One-Step
Pixotter Any (browser) Yes Yes Yes Yes
macOS Preview macOS Yes Yes (via Print) Yes Yes
Windows Print to PDF Windows Yes Yes Yes No (two steps)
iPhone/iPad iOS/iPadOS Yes Yes Yes Yes
ImageMagick Any (CLI) Yes Yes Yes Yes

Pixotter and macOS Preview are the only options that handle HEIC-to-PDF in a single step without installing software. Windows requires converting HEIC to JPG first, while ImageMagick needs a terminal install.

When to Convert HEIC to PDF

PDF is the universal document format. Here's when the conversion makes sense:

If you just need to share a photo and the recipient can handle standard image formats, consider converting HEIC to JPG or HEIC to PNG instead. PDF is best when you need a document — something with fixed layout that looks the same on every device.

Frequently Asked Questions

Does converting HEIC to PDF reduce image quality?

It depends on the tool. Pixotter and macOS Preview embed the image at full resolution inside the PDF — no quality loss. ImageMagick preserves quality by default but applies compression if you specify a quality flag. The image inside the PDF is still a raster image, so "PDF" doesn't add any magical enhancement — it wraps the photo in a document container.

Can I combine multiple HEIC photos into one PDF?

Yes. Pixotter's Image to PDF tool creates a multi-page PDF from multiple HEIC files — drop them all at once. On macOS, Preview's Print → Save as PDF method combines multiple images. ImageMagick does it with magick *.heic combined.pdf. On iPhone, select multiple photos before starting the Share → Print → pinch-zoom workflow.

Why can't I just rename .heic to .pdf?

File extensions aren't file formats. A HEIC file contains HEVC-compressed image data. A PDF file contains a structured document with embedded content streams. Renaming the extension doesn't transform the data — it just confuses your operating system. You need actual conversion software to decode the HEIC image and encode it inside a PDF container.

What's the difference between HEIC and HEIF?

HEIF (High Efficiency Image File Format) is the container specification defined by ISO/IEC 23008-12. HEIC is HEIF using HEVC (H.265) compression — it's the specific variant Apple uses on iPhones. For conversion purposes, .heic and .heif files work identically.

Will my HEIC-to-PDF keep EXIF metadata (date, location, camera info)?

PDF doesn't natively display EXIF metadata the way image viewers do. Some converters embed EXIF data in the PDF's metadata fields, while others discard it. If metadata matters, convert HEIC to JPG first and use a PDF tool that explicitly includes EXIF fields. For most use cases (document submission, portfolios), the visual content matters more than the metadata.

How do I open HEIC files if I don't want PDF?

If PDF isn't what you need, you have options. Convert to JPG for universal compatibility, to PNG for lossless quality, or check out the full guide on how to open HEIC files for platform-specific methods.

Try it yourself

Convert between any image format instantly — free, instant, no signup. Your images never leave your browser.

Convert Images →