allow palette PNG images with ICC profile (closes: #107)

main
parent b4c8aa1a5f
commit 3d7e0e6812
Signed by untrusted user: josch
GPG Key ID: F2CBA5C78FBD83E1

@ -823,7 +823,9 @@ class pdfdoc(object):
elif color == Colorspace.CMYK or color == Colorspace["CMYK;I"]:
iccpdict[PdfName.N] = 4
elif color == Colorspace.P:
raise Exception("Cannot have Palette images with ICC profile")
# Only the png format can have an icc profile as well as a
# color palette. A png palette is always RGB.
iccpdict[PdfName.N] = 3
colorspace = [PdfName.ICCBased, iccpdict]
# either embed the whole jpeg or deflate the bitmap representation

Loading…
Cancel
Save