我正在尝试使用这些行渲染this SVG file:
from PyQt5 import QtWidgets, QtSvg
qApp = QtWidgets.QApplication([])
scene = QtWidgets.QGraphicsScene()
view = QtWidgets.QGraphicsView(scene)
svg = QtSvg.QGraphicsSvgItem('test.svg')
scene.addItem(svg)
view.show()
qApp.exec_()
不幸的是,结果如下: 代替: (实际图像在x轴上要长得多,这只是一个部分)
比率偏离,并且根本不呈现所有定义的符号。有什么想法?