1
0
mirror of https://github.com/ciromattia/kcc synced 2025-12-13 01:36:27 +00:00

limit kindle scribe image size to (1440, 1920) when using kindlegen (#516)

This commit is contained in:
darodi
2023-05-13 15:50:27 +00:00
committed by GitHub
parent 611ee31526
commit 21a167b3ee

View File

@@ -1092,8 +1092,8 @@ def checkOptions(options):
image.ProfileData.Profiles["Custom"] = newProfile
options.profile = "Custom"
options.profileData = image.ProfileData.Profiles[options.profile]
# kindle scribe conversion to mobi is limited in resolution by kindlegen
if options.profile == 'KS' and options.format == 'MOBI':
# kindle scribe conversion to mobi is limited in resolution by kindlegen, same with send to kindle and epub
if options.profile == 'KS' and (options.format == 'MOBI' or options.format == 'EPUB'):
options.profileData = list(options.profileData)
options.profileData[1] = (1440, 1920)
return options