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, 2092🔥, 0💬
Popular Posts:
Where to find tutorials on Visual Studio? I want to know How to learn Visual Studio. Here is a large...
Where to get the detailed description of the JSON.stringify() Function in JavaScript? Here is the de...
Why I am getting "The Windows SDK version 8.1 was not found" error, when building my C++ application...
How to add request query string Parameters to my Azure API operation 2017 version to make it more us...
How to use the urllib.request.Request object to build more complex HTTP request? The urllib.request....