mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 01:46:18 +03:00
Merge pull request #1024 from holg/master
[ADD] added PySide compability
This commit is contained in:
commit
9f7ee1cf91
|
@ -24,7 +24,11 @@ if 'PyQt4.QtGui' not in sys.modules:
|
||||||
try:
|
try:
|
||||||
from PyQt5.QtGui import QImage, qRgba
|
from PyQt5.QtGui import QImage, qRgba
|
||||||
except:
|
except:
|
||||||
from PyQt4.QtGui import QImage, qRgba
|
try:
|
||||||
|
from PyQt4.QtGui import QImage, qRgba
|
||||||
|
except:
|
||||||
|
from PySide.QtGui import QImage, qRgba
|
||||||
|
|
||||||
else: #PyQt4 is used
|
else: #PyQt4 is used
|
||||||
from PyQt4.QtGui import QImage, qRgba
|
from PyQt4.QtGui import QImage, qRgba
|
||||||
|
|
||||||
|
|
|
@ -7,8 +7,11 @@ except:
|
||||||
try:
|
try:
|
||||||
from PyQt4.QtGui import QImage, qRgb, qRgba
|
from PyQt4.QtGui import QImage, qRgb, qRgba
|
||||||
except:
|
except:
|
||||||
# Will be skipped in setUp
|
try:
|
||||||
pass
|
from PySide.QtGui import QImage, qRgb, qRgba
|
||||||
|
except:
|
||||||
|
# Will be skipped in setUp
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
class TestImageQt(PillowTestCase):
|
class TestImageQt(PillowTestCase):
|
||||||
|
@ -20,7 +23,10 @@ class TestImageQt(PillowTestCase):
|
||||||
try:
|
try:
|
||||||
from PyQt4.QtGui import QImage, qRgb, qRgba
|
from PyQt4.QtGui import QImage, qRgb, qRgba
|
||||||
except:
|
except:
|
||||||
self.skipTest('PyQt4 or 5 not installed')
|
try:
|
||||||
|
from PySide.QtGui import QImage, qRgb, qRgba
|
||||||
|
except:
|
||||||
|
self.skipTest('PyQt4 or 5 or PySide not installed')
|
||||||
|
|
||||||
def test_rgb(self):
|
def test_rgb(self):
|
||||||
# from https://qt-project.org/doc/qt-4.8/qcolor.html
|
# from https://qt-project.org/doc/qt-4.8/qcolor.html
|
||||||
|
|
Loading…
Reference in New Issue
Block a user