diff --git a/src/libprs500/ebooks/lrf/html/convert_from.py b/src/libprs500/ebooks/lrf/html/convert_from.py index 70be6407e3..6a98453099 100644 --- a/src/libprs500/ebooks/lrf/html/convert_from.py +++ b/src/libprs500/ebooks/lrf/html/convert_from.py @@ -1482,7 +1482,7 @@ def process_file(path, options, logger=None): th = Device.THUMBNAIL_HEIGHT im = PILImage.open(os.path.join(cwd, cpath)) cim = im.resize((options.profile.screen_width, - options.profile.screen_height), + options.profile.screen_height - options.profile.fudge), PILImage.BICUBIC).convert('RGB') cf = PersistentTemporaryFile(prefix=__appname__+"_", suffix=".jpg") cf.close()