Hi!
It is necessary to make printing of pictures in the thread (non GUI).
QImage image;
QPainter m_painter;
...

m_painter.drawImage(0, 0, image, 0, 0, -1, -1, Qt::MonoOnly | Qt::ThresholdDither | Qt::ThresholdAlphaDither);

After function call drawImage I receive the message:
QPixmap: It is not safe to use pixmaps outside the GUI thread.

Thus the printer prints a blank page.

Does somebody know how to solve this?
Thanks for any help.