mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 09:57:43 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			704 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			704 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from helper import unittest, PillowTestCase, hopper
 | 
						|
from test_imageqt import PillowQtTestCase
 | 
						|
 | 
						|
from PIL import ImageQt
 | 
						|
 | 
						|
 | 
						|
if ImageQt.qt_is_installed:
 | 
						|
    from PIL.ImageQt import QImage
 | 
						|
 | 
						|
 | 
						|
class TestToQImage(PillowQtTestCase, PillowTestCase):
 | 
						|
 | 
						|
    def test_sanity(self):
 | 
						|
        PillowQtTestCase.setUp(self)
 | 
						|
        for mode in ('1', 'RGB', 'RGBA', 'L', 'P'):
 | 
						|
            data = ImageQt.toqimage(hopper(mode))
 | 
						|
 | 
						|
            self.assertTrue(isinstance(data, QImage))
 | 
						|
            self.assertFalse(data.isNull())
 | 
						|
 | 
						|
            # Test saving the file
 | 
						|
            tempfile = self.tempfile('temp_{0}.png'.format(mode))
 | 
						|
            data.save(tempfile)
 | 
						|
 | 
						|
 | 
						|
if __name__ == '__main__':
 | 
						|
    unittest.main()
 | 
						|
 | 
						|
# End of file
 |