如何在 PyQt 中绘制自定义椭圆形?

How to draw custom oval shape in PyQt?

所以我一直在尝试使用 QGraphicsEllipseItem 制作自定义椭圆形。

看了Qt关于QGraphicsEllipseItem的官方文档后,我似乎没有找到如何管理它的方法。

这是自定义的椭圆形:

如果你想实现复杂的形状,那么一个可能的解决方案是使用 QPainterPathItem:

from PyQt5.QtCore import QRectF
from PyQt5.QtGui import QColor, QPainterPath
from PyQt5.QtWidgets import (
    QApplication,
    QGraphicsPathItem,
    QGraphicsScene,
    QGraphicsView,
)


def main():
    app = QApplication([])

    radius = 20
    length = 100

    square = QRectF(0, 0, 2 * radius, 2 * radius)

    path = QPainterPath()
    path.moveTo(radius, 0)
    path.arcTo(square, 90, 180)
    path.lineTo(length, 2 * radius)
    square.moveRight(length + 2 * radius)
    path.arcTo(square, -90, 180)
    path.lineTo(radius, 0)

    item = QGraphicsPathItem()
    item.setBrush(QColor("red"))
    item.setPen(QColor("green"))
    item.setPath(path)

    scene = QGraphicsScene()
    view = QGraphicsView(scene)
    scene.addItem(item)
    view.show()

    app.exec_()


main()