gpt4 book ai didi

c++ - Qt - 如何在 QGraphicsPixmapItem 中显示 gif(动画)图像

转载 作者:搜寻专家 更新时间:2023-10-31 01:19:44 25 4
gpt4 key购买 nike

我正在尝试在 QGraphicsPixmapItem 中使用一个闪烁的图像。显示的图像没有动画效果。下面是原始图像,下面是在QGraphicsPixmapItem中使用这个图像的QGraphicsScene。谁能说说如何实现这一点?

enter image description here

enter image description here

最佳答案

使用此代码

QGraphicsScene scene;
QLabel *gif_anim = new QLabel();
QMovie *movie = new QMovie(image);
gif_anim->setMovie(movie);
movie->start();
QGraphicsProxyWidget *proxy = scene.addWidget(gif_anim);

关于c++ - Qt - 如何在 QGraphicsPixmapItem 中显示 gif(动画)图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5769766/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com