From 94f3ba68bfe522c03910f96d8086a5cb74bf77e5 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 31 Aug 2015 21:28:58 +0530 Subject: [PATCH] Got confirmation of PW3 screen res from Amazon --- src/calibre/customize/profiles.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/calibre/customize/profiles.py b/src/calibre/customize/profiles.py index 55f0e883d4..b32684f50d 100644 --- a/src/calibre/customize/profiles.py +++ b/src/calibre/customize/profiles.py @@ -696,6 +696,11 @@ class KindlePaperWhite3Output(KindleVoyageOutput): name = 'Kindle PaperWhite 3' short_name = 'kindle_pw3' description = _('This profile is intended for the Amazon Kindle PaperWhite 3 and above') + # Screen size is currently just the spec size, actual renderable area will + # depend on someone with the device doing tests. + screen_size = (1072, 1430) + dpi = 300.0 + comic_screen_size = screen_size class KindleFireOutput(KindleDXOutput):