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