Image
Unsolved
Qt for Python
-
def updateLabel(self):
self.label_27.setPixmap(QtGui.QPixmap("D:/Bhavin PyQt/vim/VIM Demo/captured_image.bmp"))i want to show 100 images in one minute on this label. so how can i achive this
-
Hi,
Use a QTimer to change your image. You can use a list with all your image paths in it and switch on each iteration.
Note that you have to take into account the time it takes to load an image.