QPicture Class

QPicture 类是一种绘画设备,可记录和重放QPainter 命令。更多

头文件: #include <QPicture>
CMake: find_package(Qt6 REQUIRED COMPONENTS Gui)
target_link_libraries(mytarget PRIVATE Qt6::Gui)
qmake: QT += gui
继承: QPaintDevice

公共函数

QPicture(int formatVersion = -1)
QPicture(const QPicture &pic)
virtual ~QPicture()
QRect boundingRect() const
const char *data() const
bool isNull() const
bool load(const QString &fileName)
bool load(QIODevice *dev)
bool play(QPainter *painter)
bool save(const QString &fileName)
bool save(QIODevice *dev)
void setBoundingRect(const QRect &r)
virtual void setData(const char *data, uint size)
uint size() const
void swap(QPicture &other)
QPicture &operator=(QPicture &&other)
QPicture &operator=(const QPicture &p)
QDataStream &operator<<(QDataStream &s, const QPicture &r)
QDataStream &operator>>(QDataStream &s, QPicture &r)

详细描述

图片以独立于平台的格式将画家命令序列化到 IO 设备。它们有时被称为元文件。

Qt 图片使用专有的二进制格式。与许多窗口系统的本地图片(元文件)格式不同,Qt 图片的内容没有任何限制。所有可以绘制在 widget 或像素图上的内容(如字体、像素图、区域、转换图形等)都可以存储在图片中。

QPicture 与分辨率无关,也就是说,QPicture 可以在不同的设备上显示(例如,svg、pdf、ps、打印机和屏幕),看起来都一样。例如,这正是所见即所得打印预览所需要的。QPicture 以默认的系统 dpi 运行,并可根据窗口系统的分辨率差异缩放画图器。

如何记录图片的示例:

QPicture picture;
QPainter painter;
painter.begin(&picture);           // paint in picture
painter.drawEllipse(10,20, 80,70); // draw an ellipse
painter.end();                     // painting done
picture.save("drawing.pic");       // save picture

请注意,每次调用QPainter::begin() 函数时,绘制命令列表都会重置。

重放图片示例:

QPicture picture;
picture.load("drawing.pic");           // load picture
QPainter painter;
painter.begin(&myImage);               // paint in myImage
painter.drawPicture(0, 0, picture);    // draw the picture at (0,0)
painter.end();                         // painting done

还可以使用play() 绘制图片。有关图片的一些基本数据是可用的,例如size(),isNull() 和boundingRect().

注意: QPicture 使用QDataStream 进行序列化。same reservations ,以防止读取不受信任的数据。

另请参阅 QMovie

成员函数文档

[explicit] QPicture::QPicture(int formatVersion = -1)

构造一个空图片。

formatVersion 参数可用于创建一个 QPicture,该 QPicture 可被 Qt 早期版本编译的应用程序读取。

请注意,默认 formatVersion 为-1,表示当前版本,即对于 Qt 4.0,formatVersion 为 7 与默认 formatVersion 为-1 相同。

Qt 4.0 不支持读取 Qt 早期版本生成的图片。

QPicture::QPicture(const QPicture &pic)

构造pic 的副本。

由于采用了隐式共享,该构造函数的运行速度很快。

[virtual noexcept] QPicture::~QPicture()

破坏图片。

QRect QPicture::boundingRect() const

返回图片的边界矩形,如果图片不包含数据,则返回无效矩形。

另请参阅 setBoundingRect()。

const char *QPicture::data() const

返回指向图片数据的指针。该指针仅在调用该图片的下一个非定常函数之前有效。如果图片不包含数据,则返回指针为 0。

另请参阅 setData()、size() 和isNull()。

bool QPicture::isNull() const

如果图片不包含数据,则返回true ;否则返回 false。

bool QPicture::load(const QString &fileName)

fileName 指定的文件中加载图片,如果成功则返回 true,否则使图片无效并返回false

另请参阅 save() 。

bool QPicture::load(QIODevice *dev)

这是一个重载函数。

dev 是用于加载的设备。

bool QPicture::play(QPainter *painter)

使用painter 重放图片,如果成功则返回true ,否则返回false

此函数的功能与 (x, y) = (0, 0) 时的QPainter::drawPicture() 完全相同。

注意: 此函数不会保留画图器的状态。

bool QPicture::save(const QString &fileName)

将图片保存到fileName 指定的文件,如果成功则返回 true,否则返回false

另请参阅 load() 。

bool QPicture::save(QIODevice *dev)

这是一个重载函数。

dev 是用于保存的设备。

void QPicture::setBoundingRect(const QRect &r)

将图片的边界矩形设置为r 。自动计算的值会被覆盖。

另请参阅 boundingRect()。

[virtual] void QPicture::setData(const char *data, uint size)

直接从datasize 设置图像数据。此函数复制输入数据。

另请参阅 data() 和size()。

uint QPicture::size() const

返回图片数据的大小。

另请参阅 data()。

[noexcept] void QPicture::swap(QPicture &other)

将此图片与other 互换。该操作速度非常快,从未出现过故障。

[noexcept] QPicture &QPicture::operator=(QPicture &&other)

Move-assignsother 到此QPicture 实例。

QPicture &QPicture::operator=(const QPicture &p)

将图片p 分配给此图片,并返回此图片的引用。

相关非会员

QDataStream &operator<<(QDataStream &s, const QPicture &r)

将图片r 写入数据流s ,并返回对数据流的引用。

QDataStream &operator>>(QDataStream &s, QPicture &r)

s 数据流中读取图片到图片r ,并返回对数据流的引用。

© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.