C++ (Qt)QLabel::setMovieQLabel::setPixmap
C++ (Qt)...QPixmap img("path/to/my/image/img.png");m_label->setPixmap(img);...
C++ (Qt)QLabel label;QMovie *movie = new QMovie("animations/fire.gif"); label.setMovie(movie);movie->start();