I want to convert a QGraphicsScene to a pixmap, so I can add it to a listwidget as a QGraphicsPixmapItem. I wonder is it possible? In another word, what I want to get is just like a thumb of a QGraphicsScene.

link|improve this question

80% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Yes, but not directly.

You can convert a QGraphicsView into a pixmap, using the static function QPixmap::grabWidget(). Create a graphics view, attach your scene to the view, and then convert the widget.

link|improve this answer
Thank you for your attention! – Kinka Feb 13 at 14:58
feedback

Your Answer

 
or
required, but never shown

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