mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 01:47:47 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			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.4.0' # Pillow
 | 
						|
 | 
						|
_plugins = ['ArgImagePlugin',
 | 
						|
            'BmpImagePlugin',
 | 
						|
            'BufrStubImagePlugin',
 | 
						|
            'CurImagePlugin',
 | 
						|
            'DcxImagePlugin',
 | 
						|
            'EpsImagePlugin',
 | 
						|
            'FitsStubImagePlugin',
 | 
						|
            'FliImagePlugin',
 | 
						|
            'FpxImagePlugin',
 | 
						|
            'GbrImagePlugin',
 | 
						|
            'GifImagePlugin',
 | 
						|
            'GribStubImagePlugin',
 | 
						|
            'Hdf5StubImagePlugin',
 | 
						|
            'IcnsImagePlugin',
 | 
						|
            'IcoImagePlugin',
 | 
						|
            'ImImagePlugin',
 | 
						|
            'ImtImagePlugin',
 | 
						|
            'IptcImagePlugin',
 | 
						|
            'JpegImagePlugin',
 | 
						|
            'Jpeg2KImagePlugin',
 | 
						|
            'McIdasImagePlugin',
 | 
						|
            'MicImagePlugin',
 | 
						|
            'MpegImagePlugin',
 | 
						|
            'MspImagePlugin',
 | 
						|
            'PalmImagePlugin',
 | 
						|
            'PcdImagePlugin',
 | 
						|
            'PcxImagePlugin',
 | 
						|
            'PdfImagePlugin',
 | 
						|
            'PixarImagePlugin',
 | 
						|
            'PngImagePlugin',
 | 
						|
            'PpmImagePlugin',
 | 
						|
            'PsdImagePlugin',
 | 
						|
            'SgiImagePlugin',
 | 
						|
            'SpiderImagePlugin',
 | 
						|
            'SunImagePlugin',
 | 
						|
            'TgaImagePlugin',
 | 
						|
            'TiffImagePlugin',
 | 
						|
            'WebPImagePlugin',
 | 
						|
            'WmfImagePlugin',
 | 
						|
            'XbmImagePlugin',
 | 
						|
            'XpmImagePlugin',
 | 
						|
            'XVThumbImagePlugin']
 |