Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PyQt display fullscreen image

I'm using PyQt to capture my screen with QPixmap.grabWindow(QApplication.desktop().winId()) and I was wondering if there was a way I could display my screengrab fullscreen (no window borders, etc.) I'm trying to find a way to desaturate my display with PyQt

like image 304
directedition Avatar asked Jan 23 '23 23:01

directedition


1 Answers

Passing QtCore.Qt.FramelessWindowHint to the QWidget constructor in symphony with self.showFullScreen() in the image widget's code achieves this.

like image 57
directedition Avatar answered Jan 25 '23 14:01

directedition