There is a
Sigil Plugin to insert images with an SVG wrapper.
I exclusively use svg wrappers whenever I want a full page image as you describe. But my books are only for my personal use, and my reader of choice, Marvin, handles them perfectly. However, some of the older kindles don't like svg in anything but the cover image. Make sure you are checking your targeted reader/device for compatibility. There are some work-arounds if your targeted device does not handle them...search here on MR for multiple discussions on the topic.
Cheers!
edit:
I have the svg wrapper coding set as a clip in Sigil, so I click on the button, and then just add the image
width,
height, and
filename.
Quote:
<body style="margin:0; padding:0; text-align:center; background-color:black">
<div style="margin:0; padding:0">
<svg
xmlns="http://www.w3.org/2000/svg"
height="100vh" width="100vw"
preserveAspectRatio="xMidYMid meet" version="1.1"
viewBox="0 0 [WIDTH] [HEIGHT]"
xmlns:xlink="http://www.w3.org/1999/xlink">
<image width="[WIDTH]" height="[HEIGHT]" xlink:href="../Images/[FILENAME]"/>
</svg>
</div>
</body>
|