Skip to content

Commit

Permalink
Do not use CCITTFaxDecode filter if libtiff is not available
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere committed Aug 22, 2022
1 parent 4c59f77 commit 49617ba
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 16 deletions.
2 changes: 1 addition & 1 deletion Tests/test_file_pdf.py
Expand Up @@ -43,7 +43,7 @@ def test_monochrome(tmp_path):

# Act / Assert
outfile = helper_save_as_pdf(tmp_path, mode)
assert os.path.getsize(outfile) < 5000
assert os.path.getsize(outfile) < (5000 if features.check("libtiff") else 15000)


def test_greyscale(tmp_path):
Expand Down
33 changes: 18 additions & 15 deletions src/PIL/PdfImagePlugin.py
Expand Up @@ -25,7 +25,7 @@
import os
import time

from . import Image, ImageFile, ImageSequence, PdfParser, __version__
from . import Image, ImageFile, ImageSequence, PdfParser, __version__, features

#
# --------------------------------------------------------------------
Expand Down Expand Up @@ -130,20 +130,23 @@ def _save(im, fp, filename, save_all=False):
width, height = im.size

if im.mode == "1":
filter = "CCITTFaxDecode"
bits = 1
params = PdfParser.PdfArray(
[
PdfParser.PdfDict(
{
"K": -1,
"BlackIs1": True,
"Columns": width,
"Rows": height,
}
)
]
)
if features.check("libtiff"):
filter = "CCITTFaxDecode"
bits = 1
params = PdfParser.PdfArray(
[
PdfParser.PdfDict(
{
"K": -1,
"BlackIs1": True,
"Columns": width,
"Rows": height,
}
)
]
)
else:
filter = "DCTDecode"
colorspace = PdfParser.PdfName("DeviceGray")
procset = "ImageB" # grayscale
elif im.mode == "L":
Expand Down

0 comments on commit 49617ba

Please sign in to comment.