Pillow/Tests/test_image_toqpixmap.py

28 lines
715 B
Python
Raw Normal View History

from helper import unittest, PillowTestCase, hopper
2015-06-19 08:35:56 +03:00
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):
2015-06-19 08:35:56 +03:00
PillowQtTestCase.setUp(self)
2015-06-21 09:31:51 +03:00
for mode in ('1', 'RGB', 'RGBA', 'L', 'P'):
data = ImageQt.toqpixmap(hopper(mode))
2015-06-21 09:31:51 +03:00
self.assertIsInstance(data, QPixmap)
self.assertFalse(data.isNull())
2015-06-21 09:31:51 +03:00
# Test saving the file
2015-06-29 07:59:05 +03:00
tempfile = self.tempfile('temp_{0}.png'.format(mode))
2015-06-21 09:31:51 +03:00
data.save(tempfile)
if __name__ == '__main__':
unittest.main()