Fix jbig2 not checked for special colorspaces

This commit is contained in:
James R. Barlow
2019-07-02 13:50:29 -07:00
parent eeae6f8292
commit a86cb8148a
+1 -1
View File
@@ -307,7 +307,7 @@ class ImageInfo:
# but encoding must be monochrome. This happens if a monochrome image
# has an ICC profile attached. Better solution would be to examine
# the ICC profile.
if self._comp == '?' and self._enc in (Encoding.ccitt, 'jbig2'):
if self._comp == '?' and self._enc in (Encoding.ccitt, Encoding.jbig2):
self._comp = FRIENDLY_COMP[Colorspace.gray]
@property