我正在尝试在 Qt 4.7 和 4.8 上制作动画 GIF,它只是在 Windows 上不起作用: - 在 Linux 上运行良好 - 在 Wine 上的 Windows 上运行良好 - 但图像没有出现在 Windows XP 和 Windows 7 上, 但适用于 PNG
这是我的代码:
QMovie *movie = new QMovie(":/resources/loading");
QLabel *myLabel = new QLabel(this);
myLabel->setMovie(movie);
movie->start();