0

QPrintWidget /Printout にヘッダーと画像を追加するにはどうすればよいですか?

私はこれが本当に見栄えの良いレイアウトされた出力ファイルを見つけました。ファイルをそのように見せたいです。ファイルの「レイアウト」を行う方法を説明するチュートリアルを見つけようとしましたが、何も見つかりませんでした。

いくつかの提案/ヘルプについて本当にうれしく思います。

これまでのところ、これはテーブルが QTableWidget から描画されている mycode です。

 def handlePaintRequest(self, printer):
        document = QtGui.QTextDocument()
        cursor = QtGui.QTextCursor(document)

        table = cursor.insertTable(self.table.rowCount(), self.table.columnCount())

        for row in range(table.rows()):
            for col in range(table.columns()):
                it = self.table.item(row, col)
                if it is not None:
                    cursor.insertText(it.text())
                cursor.movePosition(QtGui.QTextCursor.NextCell)
        document.print_(printer)

ここに画像の説明を入力

4

1 に答える 1