I have a big svg(70000 * 2000) and I want to display it completely. I Used QPixmap and I found it was incomplete. This is my code:
self.img = QPixmap('test.svg')
self.scaled_img = self.img
def paintEvent(self, e):
    painter = QPainter()
    painter.begin(self)
    self.draw_img(painter)
    painter.end()
def draw_img(self, painter):
    painter.drawPixmap(self.point, self.scaled_img)