2019-02-03 18:34:53 +03:00
|
|
|
from .helper import PillowTestCase, hopper
|
2019-01-13 20:00:12 +03:00
|
|
|
from .test_imageqt import PillowQPixmapTestCase
|
2014-09-15 22:24:56 +04:00
|
|
|
|
2015-06-19 08:35:56 +03:00
|
|
|
from PIL import ImageQt
|
2014-09-15 22:24:56 +04:00
|
|
|
|
2017-04-20 14:14:23 +03:00
|
|
|
|
2014-09-15 22:24:56 +04:00
|
|
|
class TestFromQPixmap(PillowQPixmapTestCase, PillowTestCase):
|
|
|
|
|
|
|
|
def roundtrip(self, expected):
|
2015-06-19 08:35:56 +03:00
|
|
|
result = ImageQt.fromqpixmap(ImageQt.toqpixmap(expected))
|
2014-09-15 22:24:56 +04:00
|
|
|
# Qt saves all pixmaps as rgb
|
|
|
|
self.assert_image_equal(result, expected.convert('RGB'))
|
|
|
|
|
2019-04-02 01:25:27 +03:00
|
|
|
def test_sanity(self):
|
|
|
|
for mode in ('1', 'RGB', 'RGBA', 'L', 'P'):
|
|
|
|
self.roundtrip(hopper(mode))
|