Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Combine Multiple Images Into a Single PDF
Forum Update on Monday, May 27th 2025

Combine Multiple Images Into a Single PDF

Scheduled Pinned Locked Moved Unsolved General and Desktop
pdfsavewidget
38 Posts 7 Posters 34.8k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • G geor
    20 Jul 2016, 20:51

    @mrjj said:

    @
    I still get the same error

    M Offline
    M Offline
    mrjj
    Lifetime Qt Champion
    wrote on 20 Jul 2016, 21:04 last edited by
    #18

    @geor
    I think its just a path thing

    void writePdf()
    {
        const QString fileName("e:/mydoc.pdf");
           QPdfWriter pdfWriter(fileName);
        pdfWriter.setPageSize(QPageSize(QPageSize::A4));
        QPainter painter(&pdfWriter);
    
        for (int i=0; i<3; ++i) {
            painter.drawPixmap(QRect(0,0,pdfWriter.logicalDpiX()*8.3,pdfWriter.logicalDpiY()*11.7), QPixmap("e:/truck.png"));
            pdfWriter.newPage();
        }
    }
    
    works here. makes PDF on e:
    
    1 Reply Last reply
    2
    • G geor
      20 Jul 2016, 21:03

      @Wieland

      once again thank you for your help it worked when I switch to the drive where the build is saved .However for some reason it is 4 empty pages maybe it's becuase of the size or something I'll try another image and see but again thank you

      M Offline
      M Offline
      mrjj
      Lifetime Qt Champion
      wrote on 20 Jul 2016, 21:04 last edited by
      #19

      @geor
      hi
      You will / might need to scale the picture or its really small.

      G 2 Replies Last reply 21 Jul 2016, 18:05
      1
      • M mrjj
        20 Jul 2016, 21:04

        @geor
        hi
        You will / might need to scale the picture or its really small.

        G Offline
        G Offline
        geor
        wrote on 21 Jul 2016, 18:05 last edited by
        #20

        @mrjj

        yeh it worked after scaling thank you.

        1 Reply Last reply
        1
        • M mrjj
          20 Jul 2016, 21:04

          @geor
          hi
          You will / might need to scale the picture or its really small.

          G Offline
          G Offline
          geor
          wrote on 21 Jul 2016, 21:10 last edited by
          #21

          @mrjj one more question lol

          the size of my widget is too big to fit well on a A4 paper without looking deformed. So I want to break the layout of it's parent, resize my widget it and then take it's pixmap to put it in an A4 so it is not deformed (with the grab function) but the problem is I can't break the layout of the parent i can only delete (in code) and when I delete it it deletes everything in it any tips?

          M 1 Reply Last reply 21 Jul 2016, 21:13
          0
          • G geor
            21 Jul 2016, 21:10

            @mrjj one more question lol

            the size of my widget is too big to fit well on a A4 paper without looking deformed. So I want to break the layout of it's parent, resize my widget it and then take it's pixmap to put it in an A4 so it is not deformed (with the grab function) but the problem is I can't break the layout of the parent i can only delete (in code) and when I delete it it deletes everything in it any tips?

            M Offline
            M Offline
            mrjj
            Lifetime Qt Champion
            wrote on 21 Jul 2016, 21:13 last edited by mrjj
            #22

            @geor
            Hi you can use the takeAt method to get your widget back from a layout.
            But maybe you can just ask the widget to render directly?
            it has a render function that can draw itself to anything you like.
            http://doc.qt.io/qt-5/qwidget.html#render

            G 1 Reply Last reply 22 Jul 2016, 14:44
            3
            • M mrjj
              21 Jul 2016, 21:13

              @geor
              Hi you can use the takeAt method to get your widget back from a layout.
              But maybe you can just ask the widget to render directly?
              it has a render function that can draw itself to anything you like.
              http://doc.qt.io/qt-5/qwidget.html#render

              G Offline
              G Offline
              geor
              wrote on 22 Jul 2016, 14:44 last edited by
              #23

              @mrjj

              it doesn't seem to chnage much unless I am using it wrong? here is my code 1870 and 994 is the size of my widget.making the pixmap the same as the size of my widget gives me excatly the same ouput as before so i made it smaller it's better but cuts most of the widget out

                                 ui->page1->setBackgroundRole(QPalette::BrightText);
              
                           QPixmap pixMap1(600,900);
                         ui->page1->render(&pixMap1,QPoint(),QRegion(0,0,1870,994));
              
              
              
              
                  const QString fileName("D:/mydoc2.pdf");
                     QPdfWriter pdfWriter(fileName);
                  pdfWriter.setPageSize(QPagedPaintDevice::A4);
                  QPainter painter(&pdfWriter);
              
                 
                      painter.drawPixmap(QRect(0,0,pdfWriter.logicalDpiX()*8.3,pdfWriter.logicalDpiY()*11.7), pixMap1);
                      pdfWriter.newPage();
              
              M 1 Reply Last reply 22 Jul 2016, 17:53
              1
              • G geor
                22 Jul 2016, 14:44

                @mrjj

                it doesn't seem to chnage much unless I am using it wrong? here is my code 1870 and 994 is the size of my widget.making the pixmap the same as the size of my widget gives me excatly the same ouput as before so i made it smaller it's better but cuts most of the widget out

                                   ui->page1->setBackgroundRole(QPalette::BrightText);
                
                             QPixmap pixMap1(600,900);
                           ui->page1->render(&pixMap1,QPoint(),QRegion(0,0,1870,994));
                
                
                
                
                    const QString fileName("D:/mydoc2.pdf");
                       QPdfWriter pdfWriter(fileName);
                    pdfWriter.setPageSize(QPagedPaintDevice::A4);
                    QPainter painter(&pdfWriter);
                
                   
                        painter.drawPixmap(QRect(0,0,pdfWriter.logicalDpiX()*8.3,pdfWriter.logicalDpiY()*11.7), pixMap1);
                        pdfWriter.newPage();
                
                M Offline
                M Offline
                mrjj
                Lifetime Qt Champion
                wrote on 22 Jul 2016, 17:53 last edited by
                #24

                @geor
                hi
                Sorry, didn't read the right docs.
                The rect is for clipping not resize the widget.
                So render will not help you to render it smaller.

                so yes, i guess to render it in different size, you must take widget out , call resize +render and put it back it.
                Not sure how well it will work if there is other stuff in the layout.
                If sole widget, it should work ok.

                G 1 Reply Last reply 25 Jul 2016, 15:38
                1
                • M mrjj
                  22 Jul 2016, 17:53

                  @geor
                  hi
                  Sorry, didn't read the right docs.
                  The rect is for clipping not resize the widget.
                  So render will not help you to render it smaller.

                  so yes, i guess to render it in different size, you must take widget out , call resize +render and put it back it.
                  Not sure how well it will work if there is other stuff in the layout.
                  If sole widget, it should work ok.

                  G Offline
                  G Offline
                  geor
                  wrote on 25 Jul 2016, 15:38 last edited by
                  #25

                  @mrjj Yeah I tried this method and It works but it's not perfect even if I resize the widget to the size of an A4 and then take it's pixmap fore some reason in the pdf it loses some quality (it looks a lot better in the user interface then in the pdf )even tho they are both the same size.I tried different functions from the painter class to draw the pixamp but the all seam the same not so good .If I draw the pixmap withouth any scaling it is very small in the pdf .. any ideas?

                  M 1 Reply Last reply 25 Jul 2016, 16:55
                  0
                  • G geor
                    25 Jul 2016, 15:38

                    @mrjj Yeah I tried this method and It works but it's not perfect even if I resize the widget to the size of an A4 and then take it's pixmap fore some reason in the pdf it loses some quality (it looks a lot better in the user interface then in the pdf )even tho they are both the same size.I tried different functions from the painter class to draw the pixamp but the all seam the same not so good .If I draw the pixmap withouth any scaling it is very small in the pdf .. any ideas?

                    M Offline
                    M Offline
                    mrjj
                    Lifetime Qt Champion
                    wrote on 25 Jul 2016, 16:55 last edited by
                    #26

                    @geor
                    hi , have you tried to render it really large and then
                    scale down to fit A4?

                    G 1 Reply Last reply 25 Jul 2016, 17:45
                    0
                    • M mrjj
                      25 Jul 2016, 16:55

                      @geor
                      hi , have you tried to render it really large and then
                      scale down to fit A4?

                      G Offline
                      G Offline
                      geor
                      wrote on 25 Jul 2016, 17:45 last edited by
                      #27

                      @mrjj yep no matter how large the pixmap awlays appears very small on the pdf

                      M 1 Reply Last reply 25 Jul 2016, 17:48
                      0
                      • G geor
                        25 Jul 2016, 17:45

                        @mrjj yep no matter how large the pixmap awlays appears very small on the pdf

                        M Offline
                        M Offline
                        mrjj
                        Lifetime Qt Champion
                        wrote on 25 Jul 2016, 17:48 last edited by
                        #28

                        @geor
                        well a screen is 72/96 DPI
                        and a printer is 600/1200/2400 DPI
                        so images do get really small.

                        As far as I remember, QPdfWriter have some setting for pdf resolution.
                        maybe it can produce better output.

                        G 1 Reply Last reply 25 Jul 2016, 18:28
                        2
                        • M mrjj
                          25 Jul 2016, 17:48

                          @geor
                          well a screen is 72/96 DPI
                          and a printer is 600/1200/2400 DPI
                          so images do get really small.

                          As far as I remember, QPdfWriter have some setting for pdf resolution.
                          maybe it can produce better output.

                          G Offline
                          G Offline
                          geor
                          wrote on 25 Jul 2016, 18:28 last edited by
                          #29

                          @mrjj yeah I saw that but unfortunately I am using qt 5.2.1

                          M 1 Reply Last reply 25 Jul 2016, 18:34
                          0
                          • G geor
                            25 Jul 2016, 18:28

                            @mrjj yeah I saw that but unfortunately I am using qt 5.2.1

                            M Offline
                            M Offline
                            mrjj
                            Lifetime Qt Champion
                            wrote on 25 Jul 2016, 18:34 last edited by
                            #30

                            @geor
                            maybe you could try to scale it before
                            drawing it to pdf.
                            the scale function can be adjusted to aim for quality
                            http://doc.qt.io/qt-5/qpixmap.html#scaled
                            with Qt::SmoothTransformation

                            note. it returns the scaled pixmap not modify the original.
                            so something like
                            mypixmap = mypixmap.scaled(xx)

                            G 1 Reply Last reply 25 Jul 2016, 18:51
                            1
                            • M mrjj
                              25 Jul 2016, 18:34

                              @geor
                              maybe you could try to scale it before
                              drawing it to pdf.
                              the scale function can be adjusted to aim for quality
                              http://doc.qt.io/qt-5/qpixmap.html#scaled
                              with Qt::SmoothTransformation

                              note. it returns the scaled pixmap not modify the original.
                              so something like
                              mypixmap = mypixmap.scaled(xx)

                              G Offline
                              G Offline
                              geor
                              wrote on 25 Jul 2016, 18:51 last edited by
                              #31

                              @mrjj It is abit better but still low quality

                              M 1 Reply Last reply 25 Jul 2016, 18:58
                              0
                              • G geor
                                25 Jul 2016, 18:51

                                @mrjj It is abit better but still low quality

                                M Offline
                                M Offline
                                mrjj
                                Lifetime Qt Champion
                                wrote on 25 Jul 2016, 18:58 last edited by
                                #32

                                @geor
                                well it was worth a shot.
                                I assume you play around with different scales?
                                Have you tried huge image like 1920x1080 and scale it down?
                                You are using http://doc.qt.io/qt-5/qpaintdevice.html#logicalDpiX
                                to calc how much to scale it?

                                I dont remember quality being so bad but i was using a fairly
                                large resolution so the widget was not that small.

                                G 1 Reply Last reply 25 Jul 2016, 19:08
                                0
                                • M mrjj
                                  25 Jul 2016, 18:58

                                  @geor
                                  well it was worth a shot.
                                  I assume you play around with different scales?
                                  Have you tried huge image like 1920x1080 and scale it down?
                                  You are using http://doc.qt.io/qt-5/qpaintdevice.html#logicalDpiX
                                  to calc how much to scale it?

                                  I dont remember quality being so bad but i was using a fairly
                                  large resolution so the widget was not that small.

                                  G Offline
                                  G Offline
                                  geor
                                  wrote on 25 Jul 2016, 19:08 last edited by
                                  #33

                                  @mrjj yes I am using it the quality is not so good however if I save it into an image its gives me a good quality so it seems taking an image instead of a pixmap a lot better.
                                  just like this
                                  ui->myWidget->grab().save("image.png");
                                  but this make me save 5 usless Images and I could not find a way to just use it temporarly..

                                  M 1 Reply Last reply 25 Jul 2016, 19:13
                                  0
                                  • G geor
                                    25 Jul 2016, 19:08

                                    @mrjj yes I am using it the quality is not so good however if I save it into an image its gives me a good quality so it seems taking an image instead of a pixmap a lot better.
                                    just like this
                                    ui->myWidget->grab().save("image.png");
                                    but this make me save 5 usless Images and I could not find a way to just use it temporarly..

                                    M Offline
                                    M Offline
                                    mrjj
                                    Lifetime Qt Champion
                                    wrote on 25 Jul 2016, 19:13 last edited by mrjj
                                    #34

                                    @geor
                                    Im not sure what grab() is.
                                    Does it return QImage?
                                    Im wondering if u could just draw this directly?
                                    No reason to save first.

                                    G 1 Reply Last reply 25 Jul 2016, 19:21
                                    0
                                    • M mrjj
                                      25 Jul 2016, 19:13

                                      @geor
                                      Im not sure what grab() is.
                                      Does it return QImage?
                                      Im wondering if u could just draw this directly?
                                      No reason to save first.

                                      G Offline
                                      G Offline
                                      geor
                                      wrote on 25 Jul 2016, 19:21 last edited by
                                      #35

                                      @mrjj it returns a pixmap

                                      M 1 Reply Last reply 25 Jul 2016, 19:22
                                      0
                                      • G geor
                                        25 Jul 2016, 19:21

                                        @mrjj it returns a pixmap

                                        M Offline
                                        M Offline
                                        mrjj
                                        Lifetime Qt Champion
                                        wrote on 25 Jul 2016, 19:22 last edited by mrjj
                                        #36

                                        @geor
                                        have you tried to convert to qimage and draw it?
                                        http://doc.qt.io/qt-4.8/qpixmap.html#toImage
                                        Not sure why saving as png makes any difference.

                                        1 Reply Last reply
                                        1
                                        • D Offline
                                          D Offline
                                          drich
                                          wrote on 12 Jul 2017, 01:23 last edited by
                                          #37
                                          This post is deleted!
                                          1 Reply Last reply
                                          0

                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Users
                                          • Groups
                                          • Search
                                          • Get Qt Extensions
                                          • Unsolved