All the tasters use the following for cover images:
Code:
<svg:svg viewBox="0 0 751 1157">
<svg:image xlink:href="images/cover.jpg" transform="translate(0 0)" width="751" height="1157" />
</svg:svg>
Note that "svg:" is a CSS entry, but this is a SVG (Scalable Vector Graphics) construct and is Adobe's recommended way to treat full-cover images. It does not display at all in Windows MobiPocket Reader and FBReader, since neither supports SVG. If all the above is replaced by standard HTML, everyone is happy:
Code:
<img src="images/cover.jpg" width="751" height="1157" />
Penguin is only supporting ADE, so following Adobe guidelines is reasonable, but this does illustrate that format shifting from ePub to earlier formats isn't going to be trivial. In particular, it will require SVG to image translation.