Search code examples
pythonpyqtpyqt5qlabelqmovie

How can I size QMovie?


self.MovieLabel = QLabel()
movie = QMovie('C:/Users/Kaan/Desktop/Tasarımlar/Mary/animasyon_mary/wait.gif')
self.MovieLabel.setMovie(movie)
movie.start()

How can i resize QMovie with QLabel?


Solution

  • You have to enable the scaledContents property of the QLabel:

    self.MovieLabel.setScaledContents(True)