我正在尝试在QGraphicsPixmapItem中使用一个闪烁的图像。图像显示没有动画效果。下面是原始图像,以下是在QGraphicsPixmapItem中使用此图像的QGraphicsScene。任何人都可以说如何做到这一点?。
答案 0 :(得分:4)
使用此代码
QGraphicsScene scene;
QLabel *gif_anim = new QLabel();
QMovie *movie = new QMovie(image);
gif_anim->setMovie(movie);
movie->start();
QGraphicsProxyWidget *proxy = scene.addWidget(gif_anim);