3Pigs4-3.0.epub - Cover Image and Page

Q

How to add a cover image to my EPUB books

✍: FYIcenter.com

A

If you want to add a cover image to your EPUB 3.1 book, you should consider to two related components:

  • Cover Image - An image file that is specified as the Cover Image of the book.
  • Cover Page - An XHTML content file that is displayed as part of the book content.

You can follow this tutorial to add a cover image and a cover page to your EPUB 3.1 book.

1. Get your cover image file ready with an aspect radio of 6"x9" (or 720x1080 pixel, assuming 120 DPI). The cover image can be stored in *.jpg format, for example: The-Wolf-Blows-Down-the-Straw-House.jpg.

The image size should not be too big, better to be < 720x1080 pixels. Otherwise, EPUB readers may have issues displaying them.

2. Add a cover image to your book by adding a "manifest" "item" in package.opf, with properties="cover-image":

   <item id="Cover" href="/The-Wolf-Blows-Down-the-Straw-House.jpg" 
      media-type="image/jpeg" properties="cover-image"/>

3. Add a cover page to your book by adding an XHTML file like Cover-Page.xhtml, which should have just 1 simple "img" element:

<?xml version="1.0" encoding="utf-8"?>
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title>The Cover Page</title>
  </head>
  <body>
<div><img src="/The-Wolf-Blows-Down-the-Straw-House.jpg" 
alt="The Wolf Blows Down The Straw House"/>
</div>
  </body>
</html>

4. Remember to include cover page in package.opf:

  ...
  <manifest>
    <item id="Cover" href="/The-Wolf-Blows-Down-the-Straw-House.jpg" 
      media-type="image/jpeg" properties="cover-image"/>
    <item id="Navigation" href="/navigation.xhtml" 
      media-type="application/xhtml+xml" properties="nav"/>
    <item id="Cover-Page" href="/Cover-Page.xhtml" media-type="application/xhtml+xml"/>
    ...
  </manifest>
  <spine>
    <itemref idref="Navigation" linear="no"/>
    <itemref idref="Cover-Page"/>
    ...
  </spine>
  ...

For example, you can download this EPUB book, 3Pigs4-3.0.epub, which contains a cover image and a cover page.

If you open 3Pigs4-3.0.epub in Calibre and go to beginning of the book, you see the cover page displayed:

EPUB Book with Cover Image and Cover Page
EPUB Book with Cover Image and Cover Page

 

3Pigs5-3.0.epub - Title Page and TOC

3Pigs3-3.0.epub - Add Images

EPUB 3.0 With XHTML Technologies

⇑⇑ EPUB Tutorials

2018-08-14, 1935🔥, 0💬