How to Convert a Cookbook PDF to EPUB — Recipes, Images, and Layout
Cookbook PDFs are beautiful on print but frustrating to use while cooking — small text, fixed layout, no text reflow. Converting to EPUB lets you read recipes on a tablet, phone, or e-reader with large text and one-handed scrolling. Here's what to expect and how to do it.
What Cookbook PDFs Typically Contain
- Full-page food photography — large JPEG images, often the majority of file size
- Two-column recipe layouts — ingredients column next to method steps
- Decorative fonts — embedded custom typefaces for headings
- Sidebar notes — tips, variations, nutritional info in callout boxes
- Chapter dividers — full-bleed images marking cuisine sections
Converting with toolkit.bot
- Go to toolkit.bot and upload your cookbook PDF
- The converter handles two-column layout detection, preserving ingredient lists and method steps in the correct reading order
- Food photography is embedded as JPEG images in the EPUB
- Download your EPUB — typically ready in 30–60 seconds
For a 200-page cookbook with full-page photos, expect an EPUB of 15–40 MB depending on image quality and count.
What Converts Well vs What Needs Manual Work
| Element | Conversion quality | Notes |
|---|---|---|
| Recipe text (ingredients, method) | Excellent | Readable on any screen |
| Chapter headings | Good | Heading structure preserved |
| Full-page food photos | Good | Embedded as images |
| Two-column ingredient/method layout | Good | Column order preserved |
| Decorative custom fonts | Partial | System font fallback used |
| Sidebar callout boxes | Partial | May appear inline as text block |
| Complex magazine-style spreads | Simplified | Layout flattened to linear flow |
Reading Cookbook EPUBs While Cooking
The main advantage over PDF: you can increase font size on a tablet without zooming, scroll with one hand, and leave the screen on without it timing out (in most reading apps). Best apps for kitchen use:
- Apple Books on iPad — large screen, night mode, can lock rotation
- Google Play Books — auto-brightness, "Read aloud" to keep hands free
- Moon+ Reader (Android) — customisable display, keep screen on setting
Reducing File Size for Cookbook EPUBs
Cookbooks tend to produce large EPUBs due to photography. To reduce size before reading on an e-reader:
# Compress images in the extracted EPUB folder
find book_extracted/ -name "*.jpg" -exec convert {} -quality 75 -resize "1200>" {} ";"
# Repack the EPUB (mimetype must be first, uncompressed)
cd book_extracted
zip -X0 ../book_compressed.epub mimetype
zip -rDX9 ../book_compressed.epub . --exclude mimetype
Large Cookbook PDFs (Over 50 MB)
If your cookbook PDF exceeds the 50 MB free limit, compress it first:
- Use iLovePDF's compress tool to reduce PDF size before uploading
- Or use Ghostscript:
gs -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/ebook -sOutputFile=compressed.pdf input.pdf