mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-10-31 07:57:27 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			720 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			720 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from PIL import Image, PixarImagePlugin
 | |
| 
 | |
| from .helper import PillowTestCase, assert_image_similar, hopper
 | |
| 
 | |
| TEST_FILE = "Tests/images/hopper.pxr"
 | |
| 
 | |
| 
 | |
| class TestFilePixar(PillowTestCase):
 | |
|     def test_sanity(self):
 | |
|         with Image.open(TEST_FILE) as im:
 | |
|             im.load()
 | |
|             self.assertEqual(im.mode, "RGB")
 | |
|             self.assertEqual(im.size, (128, 128))
 | |
|             self.assertEqual(im.format, "PIXAR")
 | |
|             self.assertIsNone(im.get_format_mimetype())
 | |
| 
 | |
|             im2 = hopper()
 | |
|             assert_image_similar(im, im2, 4.8)
 | |
| 
 | |
|     def test_invalid_file(self):
 | |
|         invalid_file = "Tests/images/flower.jpg"
 | |
| 
 | |
|         self.assertRaises(SyntaxError, PixarImagePlugin.PixarImageFile, invalid_file)
 |