mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 09:57:43 +03:00 
			
		
		
		
	This is Christoph Gohlke's test suite from his personal PIL package found at http://www.lfd.uci.edu/~gohlke/pythonlibs/. This is just to bring it in as a separate commit. Future commits will align it with Pillow.
		
			
				
	
	
		
			24 lines
		
	
	
		
			408 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			408 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from PIL import Image
 | 
						|
 | 
						|
def version(module, version):
 | 
						|
    v = getattr(module.core, version + "_version", None)
 | 
						|
    if v:
 | 
						|
        print(version, v)
 | 
						|
 | 
						|
version(Image, "jpeglib")
 | 
						|
version(Image, "zlib")
 | 
						|
 | 
						|
try:
 | 
						|
    from PIL import ImageFont
 | 
						|
except ImportError:
 | 
						|
    pass
 | 
						|
else:
 | 
						|
    version(ImageFont, "freetype2")
 | 
						|
 | 
						|
try:
 | 
						|
    from PIL import ImageCms
 | 
						|
except ImportError:
 | 
						|
    pass
 | 
						|
else:
 | 
						|
    version(ImageCms, "littlecms")
 |