I have used QGraphicsView
, QGraphicsScene
classes in order to show a picture in a widget like this:
m_Scene->addPixmap(QPixmap(fileName));
m_View->setScene(m_Scene);
How I can show .gif animation in the same scene?
See Question&Answers more detail:os