View Single Post
Old 10-06-2013, 08:43 PM   #9
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: 47,308
Karma: 171295426
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by wake_me View Post
Hey just wanted to update and say thanks. I deleted the books and put one on at a time. The Glo showed it to be processing and the books appeared no problem.

One thing though...I downloaded a comic book but like a third of the bottom of the screen isnt being used and it makes the text hard to read. is there a way to make comic book files larger when viewing?

thanks again
If it was a cbr/cbz comic book, my daughter has a collection of them I spent some time converting to epubs with svg wrappers for the graphics so they used as much of the page as possible. A pain the in posterior but the best solution I've found since they autoresize across Touch/Glo/Aura HD displays.

The images in one of the books were all 1280x1988 so a simple copy and paste and then change the image file name worked so each "chapter" file consists of the following:

Code:
<head>  
<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 1280 1988" width="100%" xmlns:xlink="http://www.w3.org/1999/xlink">
      <image height="1988" width="1280" xlink:href="../Images/page_012.jpg"></image>
    </svg>
  </div>
You can dig out more information on what the various items in the wrapper if you are interested.

Regards,
David

Last edited by DNSB; 10-06-2013 at 08:54 PM.
DNSB is offline   Reply With Quote