Graphics

Qt 5中的图形主要通过强制性的QPainter API或通过Qt的声明性UI语言Qt Quick及其场景图后端来完成。 Qt 5的图形功能还包括对打印的支持,以及各种图像格式的加载和保存。

QPainter的2D图形

QPainter provides API for drawing vector graphics, text and images onto different surfaces, or QPaintDevice instances, such as QImage, QOpenGLPaintDevice, QWidget, and QPrinter. 实际绘制发生在QPaintDeviceQPaintEngine中。 软件光栅化器和OpenGL(ES)2.0后端是两个最重要的QPaintEngine实现。 光栅绘制引擎是Qt的软件光栅化器,用于在QImageQWidget上绘制时使用。 启用抗锯齿功能后,它具有超过OpenGL绘制引擎的优势是其高质量,并具有完整的功能集。

QPainter的最重要的渲染目标是:

QPainter和相关类是Qt GUI模块的一部分。

OpenGL and 3D

OpenGL is the most widely adopted graphics API for hardware accelerated and 3D graphics, implemented on all desktop platforms and almost every mobile and embedded platform. The Qt library contains a number of classes that help users integrate OpenGL into their applications.

Prior to Qt 5.0, OpenGL support in Qt was handled by the Qt OpenGL module. This module is still present, but new code should aim to use the new classes in the Qt GUI module. The classes are easily distinguisible based on their names: Classes with the QGL prefix should not be used. Instead, prefer the ones starting with QOpenGL.

Qt Quick Scene Graph

Qt Quick 2 introduces an OpenGL (ES) 2.0 scene graph for rendering. It generally improves the performance of Qt Quick 2 significantly compared to the QGraphicsView/QPainter-based approach used in earlier versions.

The scene graph is a graphical representation of the Item scene. It can be thought of as a graphical deep copy, an independent structure that contains enough information to render all the items. Once it has been set up, it can be manipulated and rendered independently of the state of the items. On many platforms, the scene graph will even be rendered on a dedicated render thread while the GUI thread is preparing the next frame's state.

The scene graph is used when you import QtQuick 2.x in your QML file, and use QQuickView to run it.

Qt Quick can be mixed with raw OpenGL rendering by connecting to the signals QQuickWindow::beforeRendering() or QQuickWindow::afterRendering() which are emitted before and after the Qt Quick scene graph is rendered, respectively. There signals are emitted from the render thread (when applicable), and the connections need to be direct.

Qt Quick can also be rendered using Qt Quick 2D Renderer. This raster paint engine enables rendering Qt Quick applications on platforms that do not have OpenGL.

Printing

Qt supports printing both directly to actual printers, locally or on the network, as well as producing PDF output. How to do printing with Qt is described in detail on the Qt Print Support page.

Images

Qt supports convenient reading, writing, and manipulating of images through the QImage class. In addition, for more fine grained control of how images are loaded or saved, you can use the QImageReader and QImageWriter classes respectively. To add support for additional image formats, outside of the ones provided by Qt, you can create image format plugins by using QImageIOHandler and QImageIOPlugin.

See the Reading and Writing Image Files page for more information.

See also Paint System.