2018-07-04 16:28:02 +03:00
|
|
|
"""Pillow (Fork of the Python Imaging Library)
|
2018-07-01 10:45:08 +03:00
|
|
|
|
|
|
|
Pillow is the friendly PIL fork by Alex Clark and Contributors.
|
|
|
|
https://github.com/python-pillow/Pillow/
|
|
|
|
|
|
|
|
Pillow is forked from PIL 1.1.7.
|
|
|
|
|
|
|
|
PIL is the Python Imaging Library by Fredrik Lundh and Contributors.
|
|
|
|
Copyright (c) 1999 by Secret Labs AB.
|
|
|
|
|
|
|
|
Use PIL.__version__ for this Pillow version.
|
|
|
|
PIL.VERSION is the old PIL version and will be removed in the future.
|
|
|
|
|
|
|
|
;-)
|
|
|
|
"""
|
2013-04-15 21:57:37 +04:00
|
|
|
|
2018-04-09 16:09:36 +03:00
|
|
|
from . import _version
|
2017-04-19 17:39:39 +03:00
|
|
|
|
2019-01-29 20:10:52 +03:00
|
|
|
# VERSION was removed in Pillow 6.0.0.
|
|
|
|
# PILLOW_VERSION is deprecated and will be removed in Pillow 7.0.0.
|
2018-04-22 22:00:39 +03:00
|
|
|
# Use __version__ instead.
|
2018-04-09 16:09:36 +03:00
|
|
|
PILLOW_VERSION = __version__ = _version.__version__
|
2013-04-15 21:57:37 +04:00
|
|
|
|
2018-04-09 16:09:36 +03:00
|
|
|
del _version
|
2016-07-15 11:00:55 +03:00
|
|
|
|
2018-07-01 10:45:08 +03:00
|
|
|
|
2018-02-17 03:46:29 +03:00
|
|
|
_plugins = ['BlpImagePlugin',
|
|
|
|
'BmpImagePlugin',
|
2013-04-15 21:57:37 +04:00
|
|
|
'BufrStubImagePlugin',
|
|
|
|
'CurImagePlugin',
|
|
|
|
'DcxImagePlugin',
|
2016-01-05 14:39:15 +03:00
|
|
|
'DdsImagePlugin',
|
2013-04-15 21:57:37 +04:00
|
|
|
'EpsImagePlugin',
|
|
|
|
'FitsStubImagePlugin',
|
|
|
|
'FliImagePlugin',
|
|
|
|
'FpxImagePlugin',
|
2016-02-05 14:10:48 +03:00
|
|
|
'FtexImagePlugin',
|
2013-04-15 21:57:37 +04:00
|
|
|
'GbrImagePlugin',
|
|
|
|
'GifImagePlugin',
|
|
|
|
'GribStubImagePlugin',
|
|
|
|
'Hdf5StubImagePlugin',
|
|
|
|
'IcnsImagePlugin',
|
|
|
|
'IcoImagePlugin',
|
|
|
|
'ImImagePlugin',
|
|
|
|
'ImtImagePlugin',
|
|
|
|
'IptcImagePlugin',
|
|
|
|
'JpegImagePlugin',
|
2014-03-12 20:25:59 +04:00
|
|
|
'Jpeg2KImagePlugin',
|
2013-04-15 21:57:37 +04:00
|
|
|
'McIdasImagePlugin',
|
|
|
|
'MicImagePlugin',
|
|
|
|
'MpegImagePlugin',
|
2014-07-16 19:36:56 +04:00
|
|
|
'MpoImagePlugin',
|
2013-04-15 21:57:37 +04:00
|
|
|
'MspImagePlugin',
|
|
|
|
'PalmImagePlugin',
|
|
|
|
'PcdImagePlugin',
|
|
|
|
'PcxImagePlugin',
|
|
|
|
'PdfImagePlugin',
|
|
|
|
'PixarImagePlugin',
|
|
|
|
'PngImagePlugin',
|
|
|
|
'PpmImagePlugin',
|
|
|
|
'PsdImagePlugin',
|
|
|
|
'SgiImagePlugin',
|
|
|
|
'SpiderImagePlugin',
|
|
|
|
'SunImagePlugin',
|
|
|
|
'TgaImagePlugin',
|
|
|
|
'TiffImagePlugin',
|
|
|
|
'WebPImagePlugin',
|
|
|
|
'WmfImagePlugin',
|
|
|
|
'XbmImagePlugin',
|
|
|
|
'XpmImagePlugin',
|
2016-02-05 14:10:48 +03:00
|
|
|
'XVThumbImagePlugin']
|