2019-07-06 23:40:53 +03:00
|
|
|
from PIL import ImageQt
|
|
|
|
|
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
|
|
|
|
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
|
2019-06-13 18:54:46 +03:00
|
|
|
self.assert_image_equal(result, expected.convert("RGB"))
|
2014-09-15 22:24:56 +04:00
|
|
|
|
2019-04-02 01:25:27 +03:00
|
|
|
def test_sanity(self):
|
2019-06-13 18:54:46 +03:00
|
|
|
for mode in ("1", "RGB", "RGBA", "L", "P"):
|
2019-04-02 01:25:27 +03:00
|
|
|
self.roundtrip(hopper(mode))
|