forked from josch/img2pdf
join strings that got put into the same line by black
This commit is contained in:
parent
01022487b7
commit
82706671cc
1 changed files with 10 additions and 12 deletions
|
@ -986,9 +986,7 @@ def get_imgmetadata(imgdata, imgformat, default_dpi, colorspace, rawdata=None):
|
||||||
ics = imgdata.mode
|
ics = imgdata.mode
|
||||||
|
|
||||||
if ics in ["LA", "PA", "RGBA"] or "transparency" in imgdata.info:
|
if ics in ["LA", "PA", "RGBA"] or "transparency" in imgdata.info:
|
||||||
logging.warning(
|
logging.warning("Image contains transparency which cannot be retained in PDF.")
|
||||||
"Image contains transparency which cannot be retained " "in PDF."
|
|
||||||
)
|
|
||||||
logging.warning("img2pdf will not perform a lossy operation.")
|
logging.warning("img2pdf will not perform a lossy operation.")
|
||||||
logging.warning("You can remove the alpha channel using imagemagick:")
|
logging.warning("You can remove the alpha channel using imagemagick:")
|
||||||
logging.warning(
|
logging.warning(
|
||||||
|
@ -1484,14 +1482,14 @@ def get_layout_fun(
|
||||||
and fitheight < 0
|
and fitheight < 0
|
||||||
):
|
):
|
||||||
raise ValueError(
|
raise ValueError(
|
||||||
"cannot fit into a rectangle where both " "dimensions are negative"
|
"cannot fit into a rectangle where both dimensions are negative"
|
||||||
)
|
)
|
||||||
elif fit not in [FitMode.fill, FitMode.enlarge] and (
|
elif fit not in [FitMode.fill, FitMode.enlarge] and (
|
||||||
(fitwidth is not None and fitwidth < 0)
|
(fitwidth is not None and fitwidth < 0)
|
||||||
or (fitheight is not None and fitheight < 0)
|
or (fitheight is not None and fitheight < 0)
|
||||||
):
|
):
|
||||||
raise Exception(
|
raise Exception(
|
||||||
"cannot fit into a rectangle where either " "dimensions are negative"
|
"cannot fit into a rectangle where either dimensions are negative"
|
||||||
)
|
)
|
||||||
|
|
||||||
def default():
|
def default():
|
||||||
|
@ -1839,7 +1837,7 @@ def convert(*images, **kwargs):
|
||||||
userunit = None
|
userunit = None
|
||||||
if pagewidth < 3.00 or pageheight < 3.00:
|
if pagewidth < 3.00 or pageheight < 3.00:
|
||||||
logging.warning(
|
logging.warning(
|
||||||
"pdf width or height is below 3.00 - too " "small for some viewers!"
|
"pdf width or height is below 3.00 - too small for some viewers!"
|
||||||
)
|
)
|
||||||
elif pagewidth > 14400.0 or pageheight > 14400.0:
|
elif pagewidth > 14400.0 or pageheight > 14400.0:
|
||||||
if kwargs["allow_oversized"]:
|
if kwargs["allow_oversized"]:
|
||||||
|
@ -1993,7 +1991,7 @@ def parse_pagesize_rectarg(string):
|
||||||
if transposed:
|
if transposed:
|
||||||
w, h = h, w
|
w, h = h, w
|
||||||
if w is None and h is None:
|
if w is None and h is None:
|
||||||
raise argparse.ArgumentTypeError("at least one dimension must be " "specified")
|
raise argparse.ArgumentTypeError("at least one dimension must be specified")
|
||||||
return w, h
|
return w, h
|
||||||
|
|
||||||
|
|
||||||
|
@ -2015,7 +2013,7 @@ def parse_imgsize_rectarg(string):
|
||||||
if transposed:
|
if transposed:
|
||||||
w, h = h, w
|
w, h = h, w
|
||||||
if w is None and h is None:
|
if w is None and h is None:
|
||||||
raise argparse.ArgumentTypeError("at least one dimension must be " "specified")
|
raise argparse.ArgumentTypeError("at least one dimension must be specified")
|
||||||
return w, h
|
return w, h
|
||||||
|
|
||||||
|
|
||||||
|
@ -2025,7 +2023,7 @@ def parse_colorspacearg(string):
|
||||||
return c
|
return c
|
||||||
allowed = ", ".join([c.name for c in Colorspace])
|
allowed = ", ".join([c.name for c in Colorspace])
|
||||||
raise argparse.ArgumentTypeError(
|
raise argparse.ArgumentTypeError(
|
||||||
"Unsupported colorspace: %s. Must be one " "of: %s." % (string, allowed)
|
"Unsupported colorspace: %s. Must be one of: %s." % (string, allowed)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@ -2099,7 +2097,7 @@ def parse_panes(string):
|
||||||
return m
|
return m
|
||||||
allowed = ", ".join([m.name for m in PageMode])
|
allowed = ", ".join([m.name for m in PageMode])
|
||||||
raise argparse.ArgumentTypeError(
|
raise argparse.ArgumentTypeError(
|
||||||
"Unsupported page mode: %s. Must be one " "of: %s." % (string, allowed)
|
"Unsupported page mode: %s. Must be one of: %s." % (string, allowed)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@ -2124,7 +2122,7 @@ def parse_layout(string):
|
||||||
return l
|
return l
|
||||||
allowed = ", ".join([l.name for l in PageLayout])
|
allowed = ", ".join([l.name for l in PageLayout])
|
||||||
raise argparse.ArgumentTypeError(
|
raise argparse.ArgumentTypeError(
|
||||||
"Unsupported page layout: %s. Must be " "one of: %s." % (string, allowed)
|
"Unsupported page layout: %s. Must be one of: %s." % (string, allowed)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@ -2609,7 +2607,7 @@ values set via the --border option.
|
||||||
viewerargs.add_argument(
|
viewerargs.add_argument(
|
||||||
"--viewer-fit-window",
|
"--viewer-fit-window",
|
||||||
action="store_true",
|
action="store_true",
|
||||||
help="Instruct the PDF viewer to resize the window to fit the page " "size",
|
help="Instruct the PDF viewer to resize the window to fit the page size",
|
||||||
)
|
)
|
||||||
viewerargs.add_argument(
|
viewerargs.add_argument(
|
||||||
"--viewer-center-window",
|
"--viewer-center-window",
|
||||||
|
|
Loading…
Reference in a new issue