2019-05-25 21:11:33 +03:00
|
|
|
from __future__ import print_function, unicode_literals
|
|
|
|
|
|
|
|
import collections
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
import PIL
|
2017-01-17 16:22:18 +03:00
|
|
|
from . import Image
|
2015-05-14 12:43:28 +03:00
|
|
|
|
|
|
|
modules = {
|
2015-05-14 13:57:01 +03:00
|
|
|
"pil": "PIL._imaging",
|
2017-05-27 18:21:35 +03:00
|
|
|
"tkinter": "PIL._tkinter_finder",
|
2015-05-14 13:57:01 +03:00
|
|
|
"freetype2": "PIL._imagingft",
|
|
|
|
"littlecms2": "PIL._imagingcms",
|
|
|
|
"webp": "PIL._webp",
|
2015-05-14 12:43:28 +03:00
|
|
|
}
|
|
|
|
|
2018-03-03 12:54:00 +03:00
|
|
|
|
2015-05-14 12:43:28 +03:00
|
|
|
def check_module(feature):
|
2017-05-12 00:01:58 +03:00
|
|
|
if not (feature in modules):
|
2015-05-14 13:57:01 +03:00
|
|
|
raise ValueError("Unknown module %s" % feature)
|
|
|
|
|
2015-05-14 12:43:28 +03:00
|
|
|
module = modules[feature]
|
|
|
|
|
|
|
|
try:
|
2018-03-03 12:28:58 +03:00
|
|
|
__import__(module)
|
2015-05-14 12:43:28 +03:00
|
|
|
return True
|
2017-05-12 00:01:58 +03:00
|
|
|
except ImportError:
|
|
|
|
return False
|
2015-05-14 12:43:28 +03:00
|
|
|
|
2018-03-03 12:54:00 +03:00
|
|
|
|
2015-05-14 12:43:28 +03:00
|
|
|
def get_supported_modules():
|
2017-05-12 00:01:58 +03:00
|
|
|
return [f for f in modules if check_module(f)]
|
2015-05-14 12:43:28 +03:00
|
|
|
|
2018-03-03 12:54:00 +03:00
|
|
|
|
2019-03-21 16:28:20 +03:00
|
|
|
codecs = {"jpg": "jpeg", "jpg_2000": "jpeg2k", "zlib": "zip", "libtiff": "libtiff"}
|
2015-05-14 12:43:28 +03:00
|
|
|
|
2018-03-03 12:54:00 +03:00
|
|
|
|
2015-05-14 12:43:28 +03:00
|
|
|
def check_codec(feature):
|
2015-05-14 13:57:01 +03:00
|
|
|
if feature not in codecs:
|
|
|
|
raise ValueError("Unknown codec %s" % feature)
|
|
|
|
|
2015-05-14 12:43:28 +03:00
|
|
|
codec = codecs[feature]
|
2015-05-14 13:57:01 +03:00
|
|
|
|
2015-05-14 12:43:28 +03:00
|
|
|
return codec + "_encoder" in dir(Image.core)
|
|
|
|
|
|
|
|
|
|
|
|
def get_supported_codecs():
|
2017-05-12 00:01:58 +03:00
|
|
|
return [f for f in codecs if check_codec(f)]
|
|
|
|
|
2018-03-03 12:54:00 +03:00
|
|
|
|
2017-05-12 00:01:58 +03:00
|
|
|
features = {
|
2019-03-21 16:28:20 +03:00
|
|
|
"webp_anim": ("PIL._webp", "HAVE_WEBPANIM"),
|
|
|
|
"webp_mux": ("PIL._webp", "HAVE_WEBPMUX"),
|
2017-05-12 00:01:58 +03:00
|
|
|
"transp_webp": ("PIL._webp", "HAVE_TRANSPARENCY"),
|
2018-12-12 13:25:05 +03:00
|
|
|
"raqm": ("PIL._imagingft", "HAVE_RAQM"),
|
2018-12-13 11:19:45 +03:00
|
|
|
"libjpeg_turbo": ("PIL._imaging", "HAVE_LIBJPEGTURBO"),
|
2017-05-12 00:01:58 +03:00
|
|
|
}
|
|
|
|
|
2018-03-03 12:54:00 +03:00
|
|
|
|
2017-05-12 00:01:58 +03:00
|
|
|
def check_feature(feature):
|
|
|
|
if feature not in features:
|
|
|
|
raise ValueError("Unknown feature %s" % feature)
|
|
|
|
|
|
|
|
module, flag = features[feature]
|
2017-09-28 05:04:24 +03:00
|
|
|
|
2017-05-12 00:01:58 +03:00
|
|
|
try:
|
2019-03-21 16:28:20 +03:00
|
|
|
imported_module = __import__(module, fromlist=["PIL"])
|
2017-05-12 00:01:58 +03:00
|
|
|
return getattr(imported_module, flag)
|
|
|
|
except ImportError:
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
def get_supported_features():
|
|
|
|
return [f for f in features if check_feature(f)]
|
|
|
|
|
|
|
|
|
|
|
|
def check(feature):
|
2019-03-21 16:28:20 +03:00
|
|
|
return (
|
|
|
|
feature in modules
|
|
|
|
and check_module(feature)
|
|
|
|
or feature in codecs
|
|
|
|
and check_codec(feature)
|
|
|
|
or feature in features
|
|
|
|
and check_feature(feature)
|
|
|
|
)
|
2017-05-12 00:01:58 +03:00
|
|
|
|
2018-03-03 12:54:00 +03:00
|
|
|
|
2017-05-12 00:01:58 +03:00
|
|
|
def get_supported():
|
|
|
|
ret = get_supported_modules()
|
|
|
|
ret.extend(get_supported_features())
|
|
|
|
ret.extend(get_supported_codecs())
|
|
|
|
return ret
|
2019-05-25 21:11:33 +03:00
|
|
|
|
|
|
|
|
|
|
|
def pilinfo(out=None):
|
|
|
|
if out is None:
|
|
|
|
out = sys.stdout
|
|
|
|
|
|
|
|
Image.init()
|
|
|
|
|
|
|
|
print("-" * 68, file=out)
|
|
|
|
print("Pillow {}".format(PIL.__version__), file=out)
|
|
|
|
print("-" * 68, file=out)
|
|
|
|
print(
|
|
|
|
"Python modules loaded from {}".format(os.path.dirname(Image.__file__)),
|
|
|
|
file=out,
|
|
|
|
)
|
|
|
|
print(
|
|
|
|
"Binary modules loaded from {}".format(os.path.dirname(Image.core.__file__)),
|
|
|
|
file=out,
|
|
|
|
)
|
|
|
|
print("-" * 68, file=out)
|
|
|
|
|
|
|
|
v = sys.version.splitlines()
|
|
|
|
print("Python {}".format(v[0].strip()), file=out)
|
|
|
|
for v in v[1:]:
|
|
|
|
print(" {}".format(v.strip()), file=out)
|
|
|
|
print("-" * 68, file=out)
|
|
|
|
|
|
|
|
for name, feature in [
|
|
|
|
("pil", "PIL CORE"),
|
|
|
|
("tkinter", "TKINTER"),
|
|
|
|
("freetype2", "FREETYPE2"),
|
|
|
|
("littlecms2", "LITTLECMS2"),
|
|
|
|
("webp", "WEBP"),
|
|
|
|
("transp_webp", "WEBP Transparency"),
|
|
|
|
("webp_mux", "WEBPMUX"),
|
|
|
|
("webp_anim", "WEBP Animation"),
|
|
|
|
("jpg", "JPEG"),
|
|
|
|
("jpg_2000", "OPENJPEG (JPEG2000)"),
|
|
|
|
("zlib", "ZLIB (PNG/ZIP)"),
|
|
|
|
("libtiff", "LIBTIFF"),
|
|
|
|
("raqm", "RAQM (Bidirectional Text)"),
|
|
|
|
]:
|
|
|
|
if check(name):
|
|
|
|
print("---", feature, "support ok", file=out)
|
|
|
|
else:
|
|
|
|
print("***", feature, "support not installed", file=out)
|
|
|
|
print("-" * 68, file=out)
|
|
|
|
|
|
|
|
extensions = collections.defaultdict(list)
|
|
|
|
for ext, i in Image.EXTENSION.items():
|
|
|
|
extensions[i].append(ext)
|
|
|
|
|
|
|
|
for i in sorted(Image.ID):
|
|
|
|
line = "{}".format(i)
|
|
|
|
if i in Image.MIME:
|
|
|
|
line = "{} {}".format(line, Image.MIME[i])
|
|
|
|
print(line, file=out)
|
|
|
|
|
|
|
|
if i in extensions:
|
|
|
|
print("Extensions: {}".format(", ".join(sorted(extensions[i]))), file=out)
|
|
|
|
|
|
|
|
features = []
|
|
|
|
if i in Image.OPEN:
|
|
|
|
features.append("open")
|
|
|
|
if i in Image.SAVE:
|
|
|
|
features.append("save")
|
|
|
|
if i in Image.SAVE_ALL:
|
|
|
|
features.append("save_all")
|
|
|
|
if i in Image.DECODERS:
|
|
|
|
features.append("decode")
|
|
|
|
if i in Image.ENCODERS:
|
|
|
|
features.append("encode")
|
|
|
|
|
|
|
|
print("Features: {}".format(", ".join(features)), file=out)
|
|
|
|
print("-" * 68, file=out)
|