Tools, FAQ, Tutorials:
3Pigs4-3.0.epub - Cover Image and Page
How to add a cover image to my EPUB books
✍: FYIcenter.com
If you want to add a cover image to your EPUB 3.1 book, you should consider to two related components:
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:
⇒ 3Pigs5-3.0.epub - Title Page and TOC
⇐ 3Pigs3-3.0.epub - Add Images
2018-08-14, 2198🔥, 0💬
Popular Posts:
How to search for the first match of a regular expression using re.search()? The re.search() functio...
How To Read a File in Binary Mode in PHP? If you have a file that stores binary data, like an execut...
How to include additional claims in Azure AD v2.0 id_tokens? If you want to include additional claim...
Where to get the detailed description of the JSON.stringify() Function in JavaScript? Here is the de...
How to reinstall npm with a node version manager? I am getting permission errors with the current ve...