Exporting widgets and setting the position of to the top of the paper in pyqt5

Heads up! You've already completed this tutorial.

meshelleva4815 | 2020-07-05 14:19:36 UTC | #1

I have a set of student information which I kept inside a QWidget. I created the following method to render() the QWidget and convert the QWidget content to pdf. Include is the output, positioned at the center 15939585535225667475434502721475|375x500

python
def print_widget(self, widget, filename):
    printer = QPrinter(QPrinter.HighResolution)
    printer.setOutputFormat(QPrinter.PdfFormat)
    printer.setOutputFileName(filename)
    painter = QPrinter(printer)
    xscale = printer.pageRect().width() * 1.0 / widget.width()
     yscale = printer.pageRect().height * 1.0 / widget.height()
    scale = min(xscale, yscale)
    painter.translate(printer.paperRect().center())#set as center here
    painter.scale(scale, scale)
    painter.translate(-widget.width()/2, -widget.height()/2)
    widget.render(painter)
    painter.end()

def pdfexport(self):
    fn, _ = QFileDialog.getSaveFileName(self, "Export PDF", None, "PDF files (.pdf);;All Files()")
    if fn:
        if QFileInfo(fn).suffix() == "":
            fn += ".pdf"
        self.print_widget(self.student_profiler, fn)

It worked well but I want it to position the widget at the top of the paper not at the centre. Thanks in anticipations


meshelleva4815 | 2020-07-07 19:28:32 UTC | #2

Hello hey, please someone should bail me out on this question, really need your help


martin | 2020-07-07 21:15:39 UTC | #3

Hey @meshelleva4815, sorry I missed this before. The centering is happening here, we can step through what you're currently doing and see how to modify it.

python
painter.translate(printer.paperRect().center())   #1
painter.scale(scale, scale)  # 2
painter.translate(-widget.width()/2, -widget.height()/2)  # 3
  1. Translate coordinates to the center of the page, in both x & y
  2. Scale to fit to the page
  3. Translate back by half the width & height.

The first step would put the top left of the widget in the middle of the paper. So, then shifting back by half height, half width, puts the middle of the widget, in the middle of the paper.

To translate just the X position we can not translate the y to the middle of the page. We'll end up with the top left of the widget being at the top of the page, in the middle (horizontally). The next translate can then just move the widget back horizontally to align on the middle.

I think the following should do it ...

python
xshift = printer.paperRect().width() / 2
painter.translate(xshift, 0)   #1
painter.scale(scale, scale)  # 2
painter.translate(-widget.width()/2, 0)  # 3
  1. Translate to width/2 (the horizontal center), no change on vertical.
  2. Scale
  3. Translate back the width of the widget / 2, nothing on y.

Let me know if that works, can't test just now but will have a look again tomorrow if not.


meshelleva4815 | 2020-07-08 23:08:18 UTC | #4

That's a relief, it worked just exactly as I wanted it. You doing a great with this time help you give boss. I hope to be like you some days boss. :hugs:


Over 10,000 developers have bought Create GUI Applications with Python & Qt!
Create GUI Applications with Python & Qt6
Take a look

Downloadable ebook (PDF, ePub) & Complete Source code

Also available from Payhip , Gumroad , Leanpub and Amazon Paperback

[[ discount.discount_pc ]]% OFF for the next [[ discount.duration ]] [[discount.description ]] with the code [[ discount.coupon_code ]]

Purchasing Power Parity

Developers in [[ country ]] get [[ discount.discount_pc ]]% OFF on all books & courses with code [[ discount.coupon_code ]]
Well done, you've finished this tutorial! Mark As Complete
[[ user.completed.length ]] completed [[ user.streak+1 ]] day streak

Exporting widgets and setting the position of to the top of the paper in pyqt5 was written by Martin Fitzpatrick .

Martin Fitzpatrick has been developing Python/Qt apps for 8 years. Building desktop applications to make data-analysis tools more user-friendly, Python was the obvious choice. Starting with Tk, later moving to wxWidgets and finally adopting PyQt.