View Single Post
Old 03-05-2021, 09:28 AM   #2
Turtle91
A Hairy Wizard
Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.
 
Turtle91's Avatar
 
Posts: 3,356
Karma: 20171571
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 15/11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
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>

Last edited by Turtle91; 03-05-2021 at 09:38 AM.
Turtle91 is offline   Reply With Quote