1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-07 09:08:01 +00:00
Files
til/workflow/convert-an-epub-document-to-pdf-on-mac.md
2022-11-24 17:49:13 -05:00

506 B

Convert An ePub Document To PDF On Mac

If you have an ePub document and you'd like it in PDF format, you can convert it using the ebook-convert binary from Calibre.

First, install Calibre:

$ brew install --cask calibre

Then convert your ePub using ebook-convert:

$ ebook-convert book.epub book.pdf

You'll see a bunch of output as it processes the document. When it completes, you'll have a nice pdf waiting for you.

source