mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 04:07:21 +03:00
53b7f6294b
Allows Pillow to distinguish between JPEGs and MPOs, and provides some MPO metadata handling. Does not yet handle multiple frames.
59 lines
1.5 KiB
Python
59 lines
1.5 KiB
Python
#
|
|
# The Python Imaging Library.
|
|
# $Id$
|
|
#
|
|
# package placeholder
|
|
#
|
|
# Copyright (c) 1999 by Secret Labs AB.
|
|
#
|
|
# See the README file for information on usage and redistribution.
|
|
#
|
|
|
|
# ;-)
|
|
|
|
VERSION = '1.1.7' # PIL version
|
|
PILLOW_VERSION = '2.5.0' # Pillow
|
|
|
|
_plugins = ['BmpImagePlugin',
|
|
'BufrStubImagePlugin',
|
|
'CurImagePlugin',
|
|
'DcxImagePlugin',
|
|
'EpsImagePlugin',
|
|
'FitsStubImagePlugin',
|
|
'FliImagePlugin',
|
|
'FpxImagePlugin',
|
|
'GbrImagePlugin',
|
|
'GifImagePlugin',
|
|
'GribStubImagePlugin',
|
|
'Hdf5StubImagePlugin',
|
|
'IcnsImagePlugin',
|
|
'IcoImagePlugin',
|
|
'ImImagePlugin',
|
|
'ImtImagePlugin',
|
|
'IptcImagePlugin',
|
|
'JpegImagePlugin',
|
|
'Jpeg2KImagePlugin',
|
|
'McIdasImagePlugin',
|
|
'MicImagePlugin',
|
|
'MpegImagePlugin',
|
|
'MpoImagePlugin',
|
|
'MspImagePlugin',
|
|
'PalmImagePlugin',
|
|
'PcdImagePlugin',
|
|
'PcxImagePlugin',
|
|
'PdfImagePlugin',
|
|
'PixarImagePlugin',
|
|
'PngImagePlugin',
|
|
'PpmImagePlugin',
|
|
'PsdImagePlugin',
|
|
'SgiImagePlugin',
|
|
'SpiderImagePlugin',
|
|
'SunImagePlugin',
|
|
'TgaImagePlugin',
|
|
'TiffImagePlugin',
|
|
'WebPImagePlugin',
|
|
'WmfImagePlugin',
|
|
'XbmImagePlugin',
|
|
'XpmImagePlugin',
|
|
'XVThumbImagePlugin']
|