From d85b80344066c653dd82ad9d61b4bf77d0040100 Mon Sep 17 00:00:00 2001 From: cgohlke Date: Sun, 29 Dec 2013 19:10:49 -0800 Subject: [PATCH 1/2] Report availability of LIBTIFF during setup --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1888a9b12..f4b8532de 100644 --- a/setup.py +++ b/setup.py @@ -506,7 +506,7 @@ class pil_build_ext(build_ext): (feature.tcl and feature.tk, "TKINTER"), (feature.jpeg, "JPEG"), (feature.zlib, "ZLIB (PNG/ZIP)"), - (feature.tiff, "TIFF G3/G4 (experimental)"), + (feature.tiff, "LIBTIFF"), (feature.freetype, "FREETYPE2"), (feature.lcms, "LITTLECMS2"), (feature.webp, "WEBP"), From e06a0d6139140a7755446f1deefc955c30834be0 Mon Sep 17 00:00:00 2001 From: cgohlke Date: Sun, 29 Dec 2013 19:12:06 -0800 Subject: [PATCH 2/2] Report availability of LIBTIFF during selftest --- selftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selftest.py b/selftest.py index 1eb7738e3..1f905b9a7 100644 --- a/selftest.py +++ b/selftest.py @@ -193,7 +193,7 @@ if __name__ == "__main__": check_module("TKINTER", "PIL._imagingtk") check_codec("JPEG", "jpeg") check_codec("ZLIB (PNG/ZIP)", "zip") - check_codec("G4 TIFF", "group4") + check_codec("LIBTIFF", "libtiff") check_module("FREETYPE2", "PIL._imagingft") check_module("LITTLECMS2", "PIL._imagingcms") check_module("WEBP", "PIL._webp")