2010-07-31 06:52:47 +04:00
|
|
|
#
|
|
|
|
# The Python Imaging Library.
|
|
|
|
# $Id$
|
|
|
|
#
|
|
|
|
# package placeholder
|
|
|
|
#
|
|
|
|
# Copyright (c) 1999 by Secret Labs AB.
|
|
|
|
#
|
|
|
|
# See the README file for information on usage and redistribution.
|
|
|
|
#
|
|
|
|
|
|
|
|
# ;-)
|
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
|
|
|
|
2018-04-22 22:00:39 +03:00
|
|
|
# VERSION is deprecated and will be removed in Pillow 6.0.0.
|
2018-04-25 11:13:56 +03:00
|
|
|
# PILLOW_VERSION is deprecated and will be removed after that.
|
2018-04-22 22:00:39 +03:00
|
|
|
# Use __version__ instead.
|
2017-05-10 14:43:08 +03:00
|
|
|
VERSION = '1.1.7' # PIL Version
|
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-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']
|