为 QPrintWidget、QPrintPrevwiwWidget 添加页脚

Adding a footer to QPrintWidget, QPrintPreviwWidget(为 QPrintWidget、QPrintPrevwiwWidget 添加页脚)
本文介绍了为 QPrintWidget、QPrintPrevwiwWidget 添加页脚的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我的发票

我在 Python 中有一个几乎完成的项目,它使用 QPrintPreviwDialog 根据上图显示和打印数据.我使用 QTextDocumento 来处理 HTML.

有没有办法在页码空间中写一些东西.我想将黄色信息写入页码空间作为页脚.或者是否有其他解决方案来显示页脚而不是使用不属于 python 的 pyjasper?

解决方案

My Invoice

I have a almost finishd project in Python which uses QPrintPreviwDialog to show and print data according to the picture above. I have used QTextDocumento to handle the HTML.

Is there a way to write something in page number space. I would like to write the info in yellow to the page number space to serve as footer. Or is there other solution to show footer instead of using pyjasper, one that are not part of python?

解决方案

Translating my previous answer from C++ to python and modifying the position of the text I show how to add a footer.

from PyQt5 import QtCore, QtGui, QtWidgets, QtPrintSupport

textMargins = 12
borderMargins = 10

def mmToPixels(printer, mm):
    return mm * 0.039370147 * printer.resolution()

def paintPage(pageNumber, pageCount, painter, doc, textRect, footerHeight):
    painter.save()
    textPageRect = QtCore.QRectF(QtCore.QPointF(0, pageNumber*doc.pageSize().height()), doc.pageSize())
    painter.setClipRect(textRect)
    painter.translate(0, -textPageRect.top())
    painter.translate(textRect.left(), textRect.top())
    doc.drawContents(painter)
    painter.restore()
    footerRect = QtCore.QRectF(textRect)
    footerRect.setTop(textRect.bottom())
    footerRect.setHeight(footerHeight)

    # draw footer
    painter.save()
    pen = painter.pen()
    pen.setColor(QtCore.Qt.blue)
    painter.setPen(pen)
    painter.drawText(footerRect, QtCore.Qt.AlignCenter, "Page {} of {}".format(pageNumber+1, pageCount))
    painter.restore()


def printDocument(printer, doc):
    painter = QtGui.QPainter(printer)
    doc.documentLayout().setPaintDevice(printer)
    doc.setPageSize(QtCore.QSizeF(printer.pageRect().size()))
    pageSize = printer.pageRect().size()
    tm = mmToPixels(printer, textMargins)
    footerHeight = painter.fontMetrics().height()
    textRect = QtCore.QRectF(tm, tm, pageSize.width() - 2 * tm, pageSize.height() - 2 * tm - footerHeight)
    doc.setPageSize(textRect.size())
    pageCount = doc.pageCount()

    for pageIndex in range(pageCount):
        if pageIndex != 0:
            printer.newPage()
        paintPage(pageIndex, pageCount, painter, doc, textRect, footerHeight)

if __name__ == '__main__':
    import sys

    app = QtWidgets.QApplication(sys.argv)
    document = QtGui.QTextDocument()
    cursor = QtGui.QTextCursor(document)
    blockFormat = QtGui.QTextBlockFormat()

    for i in range(10):
        cursor.insertBlock(blockFormat)
        cursor.insertHtml("<h1>This is the {} page</h1>".format(i+1))
        blockFormat.setPageBreakPolicy(QtGui.QTextFormat.PageBreak_AlwaysBefore)

    printer = QtPrintSupport.QPrinter(QtPrintSupport.QPrinter.HighResolution)
    printer.setPageSize(QtPrintSupport.QPrinter.A4)
    printer.setOutputFormat(QtPrintSupport.QPrinter.PdfFormat)

    dialog = QtPrintSupport.QPrintPreviewDialog(printer)
    dialog.paintRequested.connect(lambda print, doc=document: printDocument(printer, doc))


    dialog.exec_()

这篇关于为 QPrintWidget、QPrintPrevwiwWidget 添加页脚的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

groupby multiple coords along a single dimension in xarray(在xarray中按单个维度的多个坐标分组)
Group by and Sum in Pandas without losing columns(Pandas中的GROUP BY AND SUM不丢失列)
Group by + New Column + Grab value former row based on conditionals(GROUP BY+新列+基于条件的前一行抓取值)
Groupby and interpolate in Pandas(PANDA中的Groupby算法和插值算法)
Pandas - Group Rows based on a column and replace NaN with non-null values(PANAS-基于列对行进行分组,并将NaN替换为非空值)
Grouping pandas DataFrame by 10 minute intervals(按10分钟间隔对 pandas 数据帧进行分组)