Let's say we have a QLabel with QPixmap
label = QLabel
Pixmap = QPixmap('filepath')
label.setPixmap(Pixmap)
I already mentioned that by using
label.setScaledContents(True)
We can force image to be autoscaled to label size (And widget's one if label autoscaled to it) Without using it, image gona be displayed in it's full size, not depending on window or label's one. Now i want it to be autoscaled to label's size, but keeping it's aspect ratio.