Qt 6.11 is out! See what's new in the release
blog
Fit a large image as a background to QWidget
General and Desktop
3
Posts
3
Posters
1.6k
Views
1
Watching
-
Use border properties in style sheet to leave some border or override paintEvent in Qwidget to draw the scaled pixmaps.
-
Either use a stylesheet on the widget (you have a couple of options for background images) or overwrite the widgets "paintEvent()":http://qt-project.org/doc/qt-5/qwidget.html#paintEvent . In there you have full control over how the widget is drawn to the screen - but you have to be careful to not waste too many resources.