Quote:
Originally Posted by theducks
But where could it get that cover?? There is no pool of covers already loaded? Or are you just seeing a Generic Cover (all my side loads have covers in Calibre)?
|
If there is an image embedded in the ePub which is flagged in the .opf as the cover, your Kobo should extract that and use it as the cover.
For an ePub 2, you should see the following:
In the metadata section of the .opf document:
Code:
<meta name="cover" content="cover" />
In the manifest section of the .opf document:
Code:
<item id="cover" href="Images/cover.jpeg" media-type="image/jpeg"/>
ePub3 is a bit simpler, just look for the 'properties="cover-image"' attribute:
Code:
<item src="images/cover.jpg" id="cover" media-type="image/jpeg" properties="cover-image"/>