Table of Contents
Here’s the thing nobody tells you: macOS cannot convert a PDF to EPUB by itself.
Preview will happily open a PDF, annotate it, sign it, rotate it, and export it as a JPEG, PNG, or another PDF. What it will not do — and never has — is export EPUB. Neither will Quick Look, Files, or Shortcuts. Apple Books will import a PDF, but it just stores it as a PDF: you still get the tiny fixed text, the pinch-to-zoom, and no font control.
So if you searched “convert PDF to EPUB on Mac” expecting a built-in menu item, that’s why you couldn’t find it.
The good news is that a Mac is one of the best machines for this job once you know where to look. You have a real Unix terminal, a first-class Calibre build, a browser that can do the conversion locally, and an Apple Books/iCloud pipeline that puts the finished EPUB on your iPhone automatically.
This guide covers the five methods that actually work on macOS, when to use each, and how to get the result onto your devices.
First: Why Convert at All?
A PDF is a fixed-layout format. Every character is nailed to a coordinate on a page sized for print — usually US Letter or A4. That’s perfect for a printer and miserable for a 6-inch e-reader or a phone.
EPUB is a reflowable format. The text adapts to the screen, so you can change the font, the size, the spacing, and the margins, and the words rearrange themselves to fit. That’s the whole difference, and we go deep on it in PDF vs EPUB.
On a big Mac display you may barely notice the problem. Send that same PDF to a Kindle, a Kobo, or your phone and it becomes unreadable. Converting on the Mac is how you fix it once and read it everywhere.
Method 1: Calibre (Free, and the Default Answer)
Calibre is the free, open-source ebook manager, and it has a native Apple Silicon build. For most Mac users this is the first thing to try.
Step-by-step
- Download Calibre for macOS and drag it to Applications.
- Click Add books and pick your PDF.
- Select it, click Convert books, and set Output format to EPUB (top right).
- Under Look & Feel → Text, consider ticking Remove spacing between paragraphs.
- Click OK. The EPUB lands in your Calibre library — right-click → Open containing folder to grab the file.
The catch
Calibre’s PDF input is rule-based text extraction. It reads the text layer, applies heuristics about line breaks and headings, and hopes for the best. On a clean, single-column, born-digital PDF, it does fine.
On anything harder, it falls apart in predictable ways: two-column papers get read straight across, tables collapse into word soup, footnotes wander into the middle of paragraphs, and headers and page numbers get stitched into the body text. Scanned PDFs produce essentially nothing, because there’s no OCR in the standard path.
We ran the full side-by-side in PDF2EPUB vs Calibre. Short version: excellent for simple PDFs, wrong tool for complex ones.
Method 2: Terminal (The Mac-Native Power Route)
This is where macOS pulls ahead of Windows. You have a real Unix shell, so the whole ebook toolchain is one Homebrew command away — and it’s scriptable, which matters if you have a folder full of PDFs.
Calibre’s CLI
Calibre ships a command-line converter. Once the app is installed, ebook-convert is available:
/Applications/calibre.app/Contents/MacOS/ebook-convert input.pdf output.epub
Batch the whole folder:
for f in *.pdf; do
/Applications/calibre.app/Contents/MacOS/ebook-convert "$f" "${f%.pdf}.epub"
done
Pandoc + Poppler
brew install pandoc poppler
pdftotext -layout input.pdf input.txt
pandoc input.txt -o output.epub --metadata title="My Book"
The catch
It’s the same engine, so it’s the same quality ceiling — you’ve automated the extraction, not improved it. pdftotext in particular gives you raw text with no headings, so the EPUB has no working table of contents unless you build the structure yourself. Great for bulk-processing simple documents; still useless on a scan.
Method 3: Browser-Based Conversion (No Install, Nothing Uploaded)
If you don’t want to install anything, convert the PDF right in Safari or Chrome with our free PDF to EPUB tool.
It runs entirely client-side — the conversion happens in your browser using your Mac’s own CPU, and the file never leaves your machine. For an NDA, a contract, or an unpublished manuscript, that’s the difference between “convenient” and “acceptable.”
Step-by-step
- Open the PDF to EPUB tool.
- Drop your PDF in. Conversion runs locally.
- Download the EPUB.
- Spend 30 seconds in the EPUB metadata editor to set a proper title and author — Apple Books sorts your library by metadata, and a file called
scan_final_v3will haunt your shelf forever.
You can also check the result in the browser EPUB reader before you sync it anywhere.
The catch
Same ceiling as Calibre: it works on the text layer with rules. Fast, free, private, and limited to simple layouts. No OCR, so no scans.
Method 4: The Pages Round-Trip (Mac-Only, and Free)
This one is genuinely Mac-specific, because Pages can export EPUB — Microsoft Word can’t.
The catch is that Pages can’t open a PDF. So you need a two-step round-trip:
- Turn the PDF into a Word document. Adobe Acrobat’s Export PDF → Microsoft Word does this; so does uploading to Google Docs and downloading as
.docx. - Open the
.docxin Pages. - Clean up the mess (you will have a mess — see below).
- File → Export To → EPUB, choose Reflowable, fill in the title and author, and export.
The catch
Every conversion step loses information, and you’re doing two of them. The PDF→DOCX step is the weak link: it guesses at structure, and columns, tables, and footnotes rarely survive intact. You then inherit that damage in Pages and hand-fix it before exporting.
For a 10-page document, this is a reasonable free afternoon. For a 400-page textbook, it’s a week you’ll regret. We took the whole approach apart in PDF2EPUB vs the Word Method.
Method 5: AI Conversion (For the PDFs the Others Can’t Handle)
Every method above reads the PDF’s text layer and applies rules. That’s the shared ceiling, and it’s why they all fail on the same documents.
PDF2EPUB.ai takes a different approach: multimodal AI (Google Gemini) that looks at each page the way you do — seeing that this is a two-column layout, that’s a table, that’s a figure caption, that’s a footnote — and then rebuilds the document as a properly structured EPUB.
That visual understanding is why it works where extraction breaks:
- Two-column academic papers come out in the correct reading order
- Tables stay tables, figures are kept, and formulas render instead of vanishing — see tables, formulas, and multi-column layouts
- Scanned PDFs get AI OCR that substantially outperforms traditional OCR — the scanned PDF guide covers this
- Footnotes and endnotes land where they belong, which is the single hardest part of this problem
- Watermarks and repeated headers/footers get stripped automatically
Step-by-step
- Upload your PDF at pdf2epub.ai — free credits on signup, no credit card.
- Use Test Mode to convert the first few pages and see the real output before spending anything.
- Download the EPUB and sync it wherever you read.
It runs in the browser, so there’s no Mac app to install and nothing to keep updated.
Which Method Should You Use?
| Your situation | Best method on Mac |
|---|---|
| Clean, single-column text PDF | Browser tool or Calibre |
| A folder of simple PDFs to batch | Terminal (ebook-convert loop) |
| Confidential document, nothing may be uploaded | Browser tool — fully local |
| Short document, want a free hand-tuned result | Pages round-trip |
| Textbook, paper, multi-column, tables or formulas | AI conversion |
| Scanned PDF | AI conversion — it’s the only one that works |
If your PDF keeps coming out mangled no matter what you try, why PDF to EPUB conversion breaks explains what’s actually going wrong.
Getting the EPUB Onto Your Devices
This is the part macOS makes genuinely pleasant.
Apple Books + iCloud (the good one). Drag the EPUB onto the Books app, or double-click it. If iCloud Drive → Books is enabled in System Settings, it syncs to your iPhone and iPad automatically — no cable, no app, no email. Open Books on your phone and it’s there. Our Apple Books guide goes further on this.
Kindle. Amazon’s Send to Kindle now accepts EPUB directly — email the file to your @kindle.com address or drop it into the Send to Kindle web page. Amazon converts it to their internal format on arrival. Details in how to read PDFs on Kindle.
Kobo. Plug the Kobo in via USB, and it mounts as a drive. Copy the EPUB into the root or a subfolder, eject, and it appears in your library. See PDF to EPUB for Kobo.
AirDrop. For a quick one-off to an iPhone or iPad: right-click the EPUB → Share → AirDrop, then choose Books on the receiving device.
FAQ
Can Preview convert PDF to EPUB on a Mac?
No. Preview exports to PDF, JPEG, PNG, TIFF, and a few other image formats — EPUB is not among them, and never has been. You need one of the five methods above.
Can Apple Books convert a PDF to EPUB?
No. Books will store and display a PDF, but it keeps it as a fixed-layout PDF. You get no font control and no reflow. Converting to EPUB first is exactly what gives you those.
Does Pages really export EPUB?
Yes — File → Export To → EPUB, and you can choose reflowable or fixed-layout output. But Pages cannot open a PDF, so you have to get the content into a .docx or .pages document first, which is where the quality is lost.
Is there a free way to do this without installing anything?
Yes — the browser-based converter runs entirely in Safari or Chrome on your own machine, with no upload and no install. It handles simple text PDFs well.
What about scanned PDFs on Mac?
A scanned PDF is just images of pages — there’s no text to extract, so Calibre, Terminal tools, Pages, and browser converters all produce an empty or garbled result. You need OCR, and AI conversion is the only path here that reaches usable accuracy on real-world scans.
The Bottom Line
macOS gives you no built-in converter, but it gives you better options than any other platform once you know they exist:
- Simple PDF → the free browser tool (nothing to install, nothing uploaded) or Calibre
- A folder of them → Terminal, in a loop
- Textbook, paper, or scan → AI conversion, because rule-based extraction has a ceiling and you’ve already hit it
Then let Apple Books and iCloud do the last mile: convert once on the Mac, and the book is on your iPhone before you’ve closed the lid.
Ready to try it? Convert your first PDF at PDF2EPUB.ai — free credits on signup, and Test Mode shows you the real output before you spend any of them.