Python将图片和标题添加到QPrintWidget

时间:2018-12-07 22:34:55

标签: python-3.x pyqt5 qtextdocument qtextcursor

如何为QPrintWidget / Printout添加页眉和图片?

我发现this看起来很不错的布局输出文件。我很想让我的文件看起来像那样。我试图找到一个教程来解释如何对文件进行“布局”,但是找不到任何内容。

我真的很高兴有一些建议/帮助。

到目前为止,这是mycode,其中的表是从QTableWidget绘制的:

 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)

enter image description here

1 个答案:

答案 0 :(得分:1)

我的答案基于您所引用的以上链接。 我只是向您展示如何添加标题。.我不会更改当前解决方案,只是给您一个可能的解决方案。...

def paintPage(pageNumber, pageCount, painter, doc, textRect, footerHeight):

    .......................

    headerRect = QtCore.QRectF(textRect)
    headerRect.setTop(textRect.top())
    headerRect.setHeight(2*footerHeight)

    .......................

painter.drawText(footerRect, QtCore.Qt.AlignCenter, "Page {} of {}".format(pageNumber+1, pageCount))
painter.drawText(headerRect, QtCore.Qt.AlignLeft, "{}\n{}".format('Project name:', 'Project number:'))