2

我正在尝试用 pyqt 绘制地图,但它不起作用。到目前为止,要么我没有输出,要么我得到像 Seg fault 这样的错误。

这是我现在使用的代码:

#!/usr/bin/python
# -*- coding: utf-8 -*-
import sys
from PyQt4.QtGui import *
from PyQt4.QtCore import *


class Example(QWidget):
    def __init__(self):
        super(Example, self).__init__()
        self.setGeometry(0, 0, 500, 500)
        self.setWindowTitle('Painel')
        list_ = []
        file_ = open('points.txt')
        for line in file_.readlines():
            l = line.replace("\n", "")
            l = l.split(" ")
            try:
                l = [float(i) for i in l]
                list_.append(l)
            except: pass#possible strings
        first = list_[0]
        list_ = list_[1:]
        self.path = QPainterPath()
        self.path.moveTo(*first)
        for i in list_:
            self.path.lineTo(*i)

    def paintEvent(self, e):      
        qp = QPainter()

        qp.begin(self)
        qp.drawPath(self.path)
        qp.end()


app = QApplication(sys.argv)
ex = Example()
ex.show()
app.exec_()

[编辑]这里是points.txt的一些内容

-57.328 -29.972
-57.323 -29.937
-57.329 -29.895
-57.328 -29.880
-57.295 -29.832
-57.242 -29.789
-57.227 -29.780
-57.171 -29.781
-57.134 -29.771

我正在使用 mac os 10.6.7 & active python 2.7.1

4

1 回答 1

2

我在旧的 Debian 稳定版上使用 Python 2.6.6。

您需要抵消负数以使其为正数,否则它们将呈现“屏幕外”并且不会在您的应用中可见。

于 2011-05-15T00:12:24.267 回答