View Single Post
Old 09-05-2008, 04:11 AM   #26
wallcraft
reader
wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.
 
wallcraft's Avatar
 
Posts: 6,977
Karma: 5183568
Join Date: Mar 2006
Location: Mississippi, USA
Device: Kindle 3, Kobo Glo HD
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.
wallcraft is offline   Reply With Quote