Drawing part of Pixmap onto circular region of widget.
Solved
General and Desktop
-
Hi
It its possible using a mask/region/brush depending on what you really like.https://forum.qt.io/topic/87229/circle-user-avatar-issue
In any case for plain drawing then maybe
QRegion region (0, 0, w,h, QRegion::Ellipse);
is what you want and then use it for clipping.