forked from josch/img2pdf
only check whether icc profile can be dropped if there is any
This commit is contained in:
parent
aea472101b
commit
7405635b72
1 changed files with 1 additions and 1 deletions
|
@ -1434,7 +1434,7 @@ def get_imgmetadata(
|
|||
iccp = imgdata.info.get("icc_profile")
|
||||
# GIMP saves bilevel tiff images with an RGB ICC profile which
|
||||
# is useless and produces an error in Adobe Acrobat -- ignore it
|
||||
if color == Colorspace["1"] and imgformat == ImageFormat.TIFF:
|
||||
if iccp is not None and color == Colorspace["1"] and imgformat == ImageFormat.TIFF:
|
||||
with io.BytesIO(imgdata.info.get("icc_profile")) as f:
|
||||
prf = ImageCms.ImageCmsProfile(f)
|
||||
if (
|
||||
|
|
Loading…
Reference in a new issue