mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-10-31 16:07:30 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			715 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			715 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from helper import unittest, PillowTestCase, hopper
 | |
| from test_imageqt import PillowQtTestCase, PillowQPixmapTestCase
 | |
| 
 | |
| from PIL import ImageQt
 | |
| 
 | |
| if ImageQt.qt_is_installed:
 | |
|     from PIL.ImageQt import QPixmap
 | |
| 
 | |
| 
 | |
| class TestToQPixmap(PillowQPixmapTestCase, PillowTestCase):
 | |
| 
 | |
|     def test_sanity(self):
 | |
|         PillowQtTestCase.setUp(self)
 | |
| 
 | |
|         for mode in ('1', 'RGB', 'RGBA', 'L', 'P'):
 | |
|             data = ImageQt.toqpixmap(hopper(mode))
 | |
| 
 | |
|             self.assertIsInstance(data, QPixmap)
 | |
|             self.assertFalse(data.isNull())
 | |
| 
 | |
|             # Test saving the file
 | |
|             tempfile = self.tempfile('temp_{0}.png'.format(mode))
 | |
|             data.save(tempfile)
 | |
| 
 | |
| 
 | |
| if __name__ == '__main__':
 | |
|     unittest.main()
 |