View Single Post
Old 09-16-2021, 01:08 PM   #5
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 46,960
Karma: 169810634
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by theducks View Post
Ooooo!
Stand by for many different opinions
Just to toss my opinion into the ring. I prefer to use an SVG wrapper to display full page images. I also will rotate maps, etc. to portrait layout to allow them to better fit the screen.

As to what I mean by an SVG wrapper?
Code:
<style type="text/css">
@page {padding: 0pt; margin:0pt}
body { text-align: center; padding:0pt; margin: 0pt; }
</style>
</head>

<body>
  <div>
    <svg xmlns="http://www.w3.org/2000/svg" height="100%" preserveAspectRatio="xMidYMid meet" version="1.1" viewBox="0 0 2550 3300" width="100%" xmlns:xlink="http://www.w3.org/1999/xlink"><image height="3300" width="2550" xlink:href="../Images/map7.jpeg"/></svg>
  </div>
Where the 2550x3300 are the dimensions of the image (WxH). On a Kobo reader using kepub format, you can tap on the map to zoom which is handy.
DNSB is offline   Reply With Quote