Added PySide to ImageQt documentation [ci skip]

This commit is contained in:
Andrew Murray 2017-02-05 14:45:55 +11:00
parent 997bcb269b
commit 973d1cfb3d

View File

@ -4,8 +4,8 @@
:py:mod:`ImageQt` Module :py:mod:`ImageQt` Module
======================== ========================
The :py:mod:`ImageQt` module contains support for creating PyQt4 or PyQt5 QImage objects The :py:mod:`ImageQt` module contains support for creating PyQt4, PyQt5 or
from PIL images. PySide QImage objects from PIL images.
.. versionadded:: 1.1.6 .. versionadded:: 1.1.6
@ -14,7 +14,7 @@ from PIL images.
Creates an :py:class:`~PIL.ImageQt.ImageQt` object from a PIL Creates an :py:class:`~PIL.ImageQt.ImageQt` object from a PIL
:py:class:`~PIL.Image.Image` object. This class is a subclass of :py:class:`~PIL.Image.Image` object. This class is a subclass of
QtGui.QImage, which means that you can pass the resulting objects directly QtGui.QImage, which means that you can pass the resulting objects directly
to PyQt4/5 API functions and methods. to PyQt4/PyQt5/PySide API functions and methods.
This operation is currently supported for mode 1, L, P, RGB, and RGBA This operation is currently supported for mode 1, L, P, RGB, and RGBA
images. To handle other modes, you need to convert the image first. images. To handle other modes, you need to convert the image first.