问题 I'm using QMovie to play a webp animation on a QLabal, the code like: Foo::Foo() { movie_ = new QMovie("/path/to/my.webp", "", this); ui->label->setMovie(movie_); } void Foo::on_pushButton_clicked() { movie_->stop(); movie_->start(); } But when I play the animation, the frame stutters, like: I try to extract the webp frames by using QImage::save, the code like: QImageReader *reader = new QImageReader("/path/to/my.webp"); reader->setDecideFormatFromContent(true); for (int i = 0; i < reader-