I am quite new to Qt.I am having troubles in inserting a QImage to a scene. Could somebody please tell me how to add a QImage to a QGraphicsScene.

Thank you very much in advance.

~Tharanga

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

For this you would use a QGraphicsPixmapItem that you add to the scene like any other QGraphicsItem.

The QGraphicsPixmapItem can be initialized with a QPixmap which is a device-dependent representation of a bitmap and you can get it from a QImage for example with the static function QPixmap::fromImage().

Update (example code)

#include <QtGui>

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();
}
link|improve this answer
+1 This is the obvious solution. – Venemo May 11 '11 at 9:29
Hi, I tried this solution but it was not working for me. I have pasted my code below. – Tharanga May 11 '11 at 11:16
Hi, I tried this solution but it was not working for me. I have pasted my code below. QGraphicsScene scene; QImage* qimage = new QImage("./IMG_2938.JPG"); QGraphicsPixmapItem pixmapItem(QPixmap::fromImage(*qimage)); scene.addItem(&pixmapItem); QGraphicsView view(&scene); view.show(); It doesn't show the image, just a window, but it just shows an emptybox.Hope someone can answer. – Tharanga May 11 '11 at 11:20
1  
I added some example code to my answer. This works for me (it is very close to what you posted). So two things come to mind: 1. Are you sure the image is found and loaded correctly? (check QImage::isNull() or use QImage::load() explictly and check the return value) 2. If you put objects on the stack instead of the heap, make sure they are still alive when they are used. – Steffen May 11 '11 at 11:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.