Given a QGraphicsScene, or QGraphicsView, is it possible to create an image file (preferably PNG or JPG)? If yes, how?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
I have not tried this, but this is the idea of how to do it. You can do this in several ways One form is as follows:
//Uses Qpixmap::grabWidget function to create a pixmap and paints the QGraphicsView inside it. The other is to use the render function QGraphicsScene::render():
|
|||||
|
|
After just dealing with this problem, there's enough improvement here to warrant a new answer:
|
|||
|
|