View Single Post
Old 06-28-2023, 04:04 PM   #5
mgrimace
Connoisseur
mgrimace ought to be getting tired of karma fortunes by now.mgrimace ought to be getting tired of karma fortunes by now.mgrimace ought to be getting tired of karma fortunes by now.mgrimace ought to be getting tired of karma fortunes by now.mgrimace ought to be getting tired of karma fortunes by now.mgrimace ought to be getting tired of karma fortunes by now.mgrimace ought to be getting tired of karma fortunes by now.mgrimace ought to be getting tired of karma fortunes by now.mgrimace ought to be getting tired of karma fortunes by now.mgrimace ought to be getting tired of karma fortunes by now.mgrimace ought to be getting tired of karma fortunes by now.
 
mgrimace's Avatar
 
Posts: 93
Karma: 1255124
Join Date: Feb 2013
Location: Ontario, Canada
Device: Kobo Libra Colour, Kobo Libra 2, Kobo Libra H2O, Kindle Oasis 9
Quote:
Originally Posted by DNSB View Post
You could try wrapping the images in an svg wrapper. Adjust the '1000' width and '1500' height to match the images you are using in both places where they are used. The last time I did something similar, 90% of the images were the same size so a simple copy/paste/edit image file name did most of the work.

Code:
<style type="text/css">
@page {padding: 0; margin:0;}
            body { text-align: center; padding:0; margin: 0; }
</style>
</head>

<body>
  <div>
    <svg xmlns="http://www.w3.org/2000/svg" height="100%" preserveAspectRatio="xMidYMid meet" version="1.1" viewBox="0 0 1000 1500" width="100%" xmlns:xlink="http://www.w3.org/1999/xlink"><image height="1500" width="1000" xlink:href="../Images/image001.jpeg"/></svg>
  </div>
Thanks for that info, makes sense! How do I go about doing that? My level of skills is mostly fetch metadata/convert :P

You're correct as well, every page is it's own unique image jpeg, and every image appears to be the same size/resolution!

Thanks again!
~M

Edit: I apologize in advance if this is something obvious or google-able. I'm having a hard time searching for answers to this particular question because most of my results bring me to cover images... it seems unique to have a 'book' composed of images, but most of my sons kids books are this way (new ones are fine just the older ones are challenging).

Last edited by mgrimace; 06-28-2023 at 04:08 PM.
mgrimace is offline   Reply With Quote