forked from josch/img2pdf
cap the maximum page size at 200 dpi which is the maximum supported by PDF
This commit is contained in:
parent
7160f1628d
commit
31a2ce231f
1 changed files with 3 additions and 0 deletions
|
@ -857,6 +857,9 @@ def convert(*images, title=None,
|
|||
if pagewidth < 3.00 or pageheight < 3.00:
|
||||
logging.warning("pdf width or height is below 3.00 - too small "
|
||||
"for some viewers!")
|
||||
elif pagewidth > 14400.0 or pageheight > 14400.0:
|
||||
logging.error("pdf width or height must not exceed 200 inches.")
|
||||
exit(1)
|
||||
# the image is always centered on the page
|
||||
imgxpdf = (pagewidth - imgwidthpdf)/2.0
|
||||
imgypdf = (pageheight - imgheightpdf)/2.0
|
||||
|
|
Loading…
Reference in a new issue