CSS   发布时间:2022-04-17  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了qt – QImage在QGraphics场景中大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我对Qt很新.我在将Q Image插入场景时遇到麻烦.有人可以告诉我如何将QImage添加到QGraphicsScene? @H_772_2@

解决方法

为此,您可以使用 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();
}
@H_772_2@ @H_772_2@

大佬总结

以上是大佬教程为你收集整理的qt – QImage在QGraphics场景中全部内容,希望文章能够帮你解决qt – QImage在QGraphics场景中所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。