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

发布于 2024-11-02 23:18:21 字数 266 浏览 2 评论 0原文

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

在此处输入图像描述

在此输入图像描述

I am trying to use one blinking image in QGraphicsPixmapItem. The image has shown without the animation effect. The below is the original image, the following is the QGraphicsScene which uses this image in QGraphicsPixmapItem. Can anybody say how to achieve this?.

enter image description here

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你在看孤独的风景 2024-11-09 23:18:21

检查此 Nosf 的答案。 io/topic/15658/solved-how-to-play-gif-animation-in-qgraphicsview-widget" rel="nofollow noreferrer">线程:

我想你可以在场景中添加一个QGraphicsProxyWidget

QLabel 设置为 ProxyWidget,然后设置标签以将您的 gif 用作 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);

Check this answer from Nosf on this thread:

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);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文