[SOLVED]How to play gif animation in QGraphicsView widget
-
I guess you could add a QGraphicsProxyWidget to your scene
set a QLabel to the ProxyWidget and then set the label to use your gif as a QMovie
@
QGraphicsScene scene;
QLabel *gif_anim = new QLabel();
QMovie *movie = new QMovie(image);
gif_anim->setMovie(movie);
movie->start();
QGraphicsProxyWidget *proxy = scene.addWidget(gif_anim);
@