Hi I am starting with QT, so I would like to ask you about my problem.
I have:
QGraphicsScene *scene;

into scene I painted some objects (rectangles, triangles etc.). At the end I would like to save this scene for example 4times to pdf document (It should create matrix with 2 rows and 2columns)
Can you help me someone? I will be happy

now I have something this:

QPainter painter(&printer);
scene->render(&painter); /* scene QGraphicsScene */


but it creates only 1 scene into pdf document