有没有办法使用 pyqt 将(动画)GIF 图像作为系统托盘图标?

发布于 2024-10-14 20:50:11 字数 197 浏览 3 评论 0原文

我用 pyqt 创建了静态(PNG)图像作为托盘图标。

对 GIF 图像执行同样的操作,生成静态托盘图标。可以用pyqt在系统托盘中制作动画吗?

QtGui.QSystemTrayIcon.__init__(self, parent)
self.setIcon(QtGui.QIcon("Image.gif"))

I have created static(PNG) image as tray icon with pyqt.

Did the same with GIF image results in static tray icon. Can it animated in system tray with pyqt?

QtGui.QSystemTrayIcon.__init__(self, parent)
self.setIcon(QtGui.QIcon("Image.gif"))

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

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

发布评论

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

评论(1

匿名的好友 2024-10-21 20:50:11

使用 QMovie 播放 gif 动画,并更新每个新帧事件上的托盘图标:

m_icon = new QSystemTrayIcon();
m_icon->show();
m_gif = new QMovie(":/animated.gif");
connect(m_gif, SIGNAL(frameChanged(int)), this, SLOT(updateIcon()));
m_gif->start();

...

void MyWidget::updateIcon()
{
    m_icon->setIcon(m_gif->currentPixmap());
}

对于 C++ 示例,我很抱歉,我没有安装 PyQt。

Use QMovie to play the animated gif, and update the tray icon on each new frame event:

m_icon = new QSystemTrayIcon();
m_icon->show();
m_gif = new QMovie(":/animated.gif");
connect(m_gif, SIGNAL(frameChanged(int)), this, SLOT(updateIcon()));
m_gif->start();

...

void MyWidget::updateIcon()
{
    m_icon->setIcon(m_gif->currentPixmap());
}

Sorry for the C++ example, I don't have PyQt installed.

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