使用Qt无法正确呈现SVG

时间:2016-09-18 06:14:10

标签: qt svg pyqt pyqt5

我正在尝试使用这些行渲染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_()

不幸的是,结果如下: enter image description here 代替: enter image description here (实际图像在x轴上要长得多,这只是一个部分)

比率偏离,并且根本不呈现所有定义的符号。有什么想法?

0 个答案:

没有答案