Hello
I want to convert QImage into QPixmap using QPixmap().convertFromImage(QImage) but the problem is that I have larg images, like 5k and that freezes Ui.

Currently I convert images in another thread, and here is my question:

is there any danger to create QPixamap in another thread if QPixmap is not accessed from non Ui thread - they are just created and stored in list?

Is there any better way to do that? I need QPixmap and not QImage because I need to display them in QGraphicsScene.

Regards