mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 20:27:06 +03:00
21 lines
568 B
Python
21 lines
568 B
Python
from PIL import ImageQt
|
|
|
|
from .helper import hopper
|
|
from .test_imageqt import PillowQPixmapTestCase
|
|
|
|
if ImageQt.qt_is_installed:
|
|
from PIL.ImageQt import QPixmap
|
|
|
|
|
|
class TestToQPixmap(PillowQPixmapTestCase):
|
|
def test_sanity(self, tmp_path):
|
|
for mode in ("1", "RGB", "RGBA", "L", "P"):
|
|
data = ImageQt.toqpixmap(hopper(mode))
|
|
|
|
assert isinstance(data, QPixmap)
|
|
assert not data.isNull()
|
|
|
|
# Test saving the file
|
|
tempfile = str(tmp_path / "temp_{}.png".format(mode))
|
|
data.save(tempfile)
|