此 SVG 图像 在 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())