Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Amazon Kindle

Notices

View Poll Results: Which image dimensions worked best for you?
580 1 33.33%
581 0 0%
582 0 0%
583 0 0%
584 0 0%
585 0 0%
586 0 0%
587 0 0%
588 0 0%
589 0 0%
590 2 66.67%
Voters: 3. You may not vote on this poll

Reply
 
Thread Tools Search this Thread
Old 08-17-2011, 02:11 AM   #1
sinan
Enthusiast
sinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of it
 
sinan's Avatar
 
Posts: 23
Karma: 66956
Join Date: Feb 2010
Location: Conn. USA
Device: Kindle 3, Kindle PW
Kindle 3 Image Dimensions Test to Fill Entire Viewable Area

Dislaying images fullscreen on Kindle 3 is quite a hustle since Kindle leaves a lot of space around the image and no one knows the exact size of that space for sure. I have been working on it quite some time and did a lot of experimentation.

What I deduced from my experiments, calculating right image size is very complex issue and depends on the dimensions of all embedded images. Probably I am wrong but I felt like it.

800x580 is seems like the best dimension for viewable screen but for zoomed image it is not, since it leaves spaces around zoomed image. I did'nt try below 580 because I use image zoom alot.

As you can guess from the title, entire viewable screen and entire screen are not the same. Viewable screen = entire screen - margins and Kindle leaves very large margins around the book. You need to know there is no way you can get full screen display for mobi files. There will be spaces around the reading area, no matter what.

But for larger image view, you can zoom on the image (press up or down arrow) , then image will cover the entire screen.

Testing Process
First I created images with with different dimension starting with 800x580 to 800x590 px dimensions then added them to a html as shown below.

Code:
<?xml version='1.0' encoding='utf-8'?>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Kindle 3 Dimension Test</title>
<link href="style.css" rel="stylesheet" type="text/css"/>
<meta content="http://www.w3.org/1999/xhtml; charset=utf-8" http-equiv="Content-Type"/></head>
<body>
<p><img alt="image3" src="580.jpg"/></p>
<p><img alt="image3" src="581.jpg"/></p>
<p><img alt="image3" src="582.jpg"/></p>
<p><img alt="image3" src="583.jpg"/></p>
<p><img alt="image3" src="584.jpg"/></p>
<p><img alt="image3" src="585.jpg"/></p>
<p><img alt="image3" src="586.jpg"/></p>
<p><img alt="image3" src="587.jpg"/></p>
<p><img alt="image3" src="588.jpg"/></p>
<p><img alt="image3" src="589.jpg"/></p>
<p><img alt="image3" src="590.jpg"/></p>
</body>
</html>
Here is the css I used
Code:
@namespace h "http://www.w3.org/1999/xhtml";
h|body, h|p, h|div, h|img {
    margin: 0;
    padding: 0
    }
h|p {
    text-align: center
    }
h|img {
    width: auto;
    height: auto;
    max-height: 100%;
    max-width: 100%
    }
I used calibre to convert it to mobi. I also debugged the mobi to study the conversion.

Contrary to my expectation viewable screen has also 800x600px dimension.

You can download Kindle 3 Dimension Test.mobi and debug files from the attachment section.

If you can post similar experimental mobi files, or participate in the poll, we may find best image dimension.
Attached Thumbnails
Click image for larger version

Name:	580.jpg
Views:	506
Size:	296.3 KB
ID:	75513  
Attached Files
File Type: mobi Kindle 3 Image Dimension Test - Unknown.mobi (3.64 MB, 402 views)
File Type: rar debug.rar (3.04 MB, 284 views)

Last edited by sinan; 08-17-2011 at 02:24 AM. Reason: Poll added
sinan is offline   Reply With Quote
Old 08-17-2011, 07:08 AM   #2
bfollowell
Fanatic
bfollowell ought to be getting tired of karma fortunes by now.bfollowell ought to be getting tired of karma fortunes by now.bfollowell ought to be getting tired of karma fortunes by now.bfollowell ought to be getting tired of karma fortunes by now.bfollowell ought to be getting tired of karma fortunes by now.bfollowell ought to be getting tired of karma fortunes by now.bfollowell ought to be getting tired of karma fortunes by now.bfollowell ought to be getting tired of karma fortunes by now.bfollowell ought to be getting tired of karma fortunes by now.bfollowell ought to be getting tired of karma fortunes by now.bfollowell ought to be getting tired of karma fortunes by now.
 
Posts: 541
Karma: 1152752
Join Date: Aug 2010
Location: Evansville, IN, USA
Device: Samsung Galaxy Tab 4 Nook & Samsung Galaxy Tab S 10.5
I thought it had long been established that the resolution for cover images was 600x800x167dpi and all other images were 520x622x167 dpi. These are the resolutions I've always used and they seem to work perfectly for me. Of course, to the best of my knowledge, you can't fill the entire screen area with an in-book image the way you can with a cover but the above resolution was said to be the actual resolution of the viewable/usable area of the screen. From what I've seen, that appears to be correct.

I am curious to check out your test file though and see what you have. It may be that I've been operating under incorrect assumptions all this time.

- Byron
bfollowell is offline   Reply With Quote
Advert
Old 07-10-2012, 09:44 PM   #3
Kamikuza
Connoisseur
Kamikuza began at the beginning.
 
Posts: 62
Karma: 10
Join Date: May 2011
Location: Japan
Device: Kindle3
Digging this up cos I find myself bugged by cover images that don't fill the screen. That is, when creating or editing an .epub, you can assign a cover image independent of the front/first/cover page.

THAT image fills the whole screen ... or at least, has the potential to if you get the aspect ratio correct - which is what I'm searching for.

Seems Kindle Preview doesn't do it properly so will have to test on the actual K3 ... wait one
Kamikuza is offline   Reply With Quote
Old 07-11-2012, 02:20 AM   #4
Kamikuza
Connoisseur
Kamikuza began at the beginning.
 
Posts: 62
Karma: 10
Join Date: May 2011
Location: Japan
Device: Kindle3
KindlePreview does "full" screen cover as 520x730 AR=0.7123...

cf. 600x800 AR=0.75

Will test when I get home on K3
Kamikuza is offline   Reply With Quote
Old 07-11-2012, 05:40 AM   #5
Kamikuza
Connoisseur
Kamikuza began at the beginning.
 
Posts: 62
Karma: 10
Join Date: May 2011
Location: Japan
Device: Kindle3
Well there we go then

To cover as much of the screen as you can with images ...

Cover image - as in "go to - cover" is 600x800 AR=0.75
I notice that the cover image has a 1px or so 'dead zone' on the LHS - like the screen should be covered by the case material just a tiny bit more ...

Maximum screen coverage (as a page in an epub, say) is actually 573x800 AR=0.67125 but that (and 580x800) causes a blank screen after the image, even if I use a mbppagebreak thingy.

The MOST fill you can get without the 'blank page' effect is 574x800 AR=0.7175 ... which leaves maybe 1px above the bottom most coverage point on the screen.

Click to zoom full page view, and cover all the screen? 600x800 again ...!!!

With regular "full size" on a page images, the Kindle seems to crop a tiny bit of the LHS of the image ... say 4px? Oddly enough, this shows up in KindlePreview as well.

PS. Maybe :lol: changed the order of the files in the epub and now 574x800 is giving a blank page after!
Kamikuza is offline   Reply With Quote
Advert
Old 07-11-2012, 05:58 AM   #6
Kamikuza
Connoisseur
Kamikuza began at the beginning.
 
Posts: 62
Karma: 10
Join Date: May 2011
Location: Japan
Device: Kindle3
Oh that's without using the OP's 100% fill technique - which totally fills the screen with all of his pics ...?!?
Kamikuza is offline   Reply With Quote
Reply

Tags
full screen, image, kindle, kindle image hack, kindle screen, pdf conversion, screen dimensions


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Convert .cbr/manga files to fill entire screen by default? Haloman800 Amazon Kindle 7 08-11-2011 12:07 AM
Image wrap test Jellby ePub 15 05-04-2011 02:30 PM
Image dimensions eBookNoir Barnes & Noble NOOK 2 02-14-2011 03:22 PM
Kindle Notes & Highlights now viewable! BinaryTB Amazon Kindle 5 05-28-2009 02:53 PM
Buy Used Kindle 1 or 2, St. Louis area Buran Flea Market 0 05-12-2009 02:09 PM


All times are GMT -4. The time now is 06:51 AM.


MobileRead.com is a privately owned, operated and funded community.