qt – QImage在QGraphics场景中

前端之家收集整理的这篇文章主要介绍了qt – QImage在QGraphics场景中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我对Qt很新.我在将Q Image插入场景时遇到麻烦.有人可以告诉我如何将QImage添加到QGraphicsScene?

解决方法

为此,您可以使用 QGraphicsPixmapItem,您可以像任何其他QGraphicsItem一样使用 add to the scene.

QGraphicsPixmapItem可以使用QPixmap进行初始化,QPixmap是位图的设备相关表示,您可以从QImage获取静态函数QPixmap::fromImage().

更新(示例代码)

#include <QtGlobal>

#if QT_VERSION >= 0x050000
    #include <QtWidgets>
#else
    #include <QtGui>
#endif

int main(int argc,char *argv[]) {
    QApplication a(argc,argv);
    QImage image("test.png");

    QGraphicsPixmapItem item( QPixmap::fromImage(image));
    QGraphicsScene* scene = new QGraphicsScene;
    scene->addItem(&item);

    QGraphicsView view(scene);
    view.show();
    return a.exec();
}
原文链接:https://www.f2er.com/css/213967.html

猜你在找的CSS相关文章