QGraphicsSVGItem 忽略(一些)剪切路径。为什么?

QGraphicsSVGItem ignores (some) clipping paths. Why?

This SVG image 在 Firefox 和 Inkscape 中正确呈现,但出于某种原因,当使用 QGraphicsSVGItem 时没有任何花哨的东西,它呈现如下:

供参考,这是它在 firefox 上的样子:

如您所见,卡片背面不应超出白色边框。

我是不是做错了什么?是否有(最好是简单的)修复程序?

MWE:

import sys
from PyQt5 import QtWidgets, QtCore, Qt, QtGui

app = QtWidgets.QApplication(sys.argv)

scene = QtWidgets.QGraphicsScene()
scene.addItem(Qt.QGraphicsSvgItem("back-red.svg"))

graphics_view = QtWidgets.QGraphicsView()
graphics_view.setScene(scene)
graphics_view.show()

sys.exit(app.exec())

可能您的 svg 不符合 Qt 使用的特征(有关更多信息,请阅读 here)。一种可能的解决方案是使用 QWebEngineView(python -m pip install pyqtwebengine):

import os
import sys

from PyQt5 import QtCore, QtGui, QtWidgets, QtSvg, QtWebEngineWidgets

CURRENT_DIR = os.path.dirname(os.path.realpath(__file__))

if __name__ == '__main__':

    app = QtWidgets.QApplication(sys.argv)

    filename = os.path.join(CURRENT_DIR, "back-red.svg")

    scene = QtWidgets.QGraphicsScene()

    renderer = QtSvg.QSvgRenderer(filename)

    graphics_view = QtWidgets.QGraphicsView()
    graphics_view.setScene(scene)
    graphics_view.show()

    view = QtWebEngineWidgets.QWebEngineView()
    view.setContextMenuPolicy(QtCore.Qt.NoContextMenu)
    # view.page().setBackgroundColor(QtGui.QColor("transparent"))
    view.resize(renderer.viewBox().size())
    view.load(QtCore.QUrl.fromLocalFile(filename))

    item = scene.addWidget(view)

    graphics_view.resize(640, 480)

    sys.exit(app.exec())