R
RED_SpiderDec. 17, 2018, 4:15 p.m.

Qt console application html to export pdf

есть пример

    QTextDocument *document = new QTextDocument();
    document->setHtml(html);

    QPrinter printer(QPrinter::PrinterResolution);
    printer.setOutputFormat(QPrinter::PdfFormat);
    printer.setPaperSize(QPrinter::A4);
    printer.setPageMargins(QMarginsF(15, 15, 15, 15));
    printer.setOutputFileName("/tmp/test.pdf");

    document->setPageSize(printer.pageRect().size());
    document->print(&printer);

но программа падает на выполнении document->print(&printer);
я даже перевел QCoreApplication в QApplication результат тот же.
возможно кто-то сталкивался с таким?

We recommend hosting TIMEWEB
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.

Do you like it? Share on social networks!

11
Evgenii Legotckoi
  • Dec. 17, 2018, 5:36 p.m.

Добрый день!

А на какой строке падает? Может, что-то не инициализировано до конца?
С виду код правильный.

У меня был где-то проект подобного плана, завтра могу посмотреть, если найду, что я там писал.

    Александр Панюшкин
    • Dec. 18, 2018, 12:37 a.m.

    Добрый день.
    С QCoreApplication у меня тоже всё падает. Вероятнее всего он там просто не работает. А вот в QApplication всё запустилось без проблем.
    Единственное, что не известно в вашем примере - переменная html. Я её обозначил как:

    QString html = "<body><h1>Hello world</h1></body>"
    

    Результат прикладываю.
    Запускал на MacOS напрямую в main.c:

    #include <QApplication>
    #include <QTextDocument>
    #include <QPrinter>
    
    int main(int argc, char *argv[])
    {
      QApplication a(argc, argv);
    
      QString html = "<body><h1>Hello world</h1></body>";
    
      QTextDocument *document = new QTextDocument();
      document->setHtml(html);
    
      QPrinter printer(QPrinter::PrinterResolution);
      printer.setOutputFormat(QPrinter::PdfFormat);
      printer.setPaperSize(QPrinter::A4);
      printer.setPageMargins(QMarginsF(15, 15, 15, 15));
      printer.setOutputFileName("/Users/ap/Downloads/test.pdf");
    
      document->setPageSize(printer.pageRect().size());
      document->print(&printer);
    
      return a.exec();
    }
    

    Если у вас не в main.c, тогда вопрос по переменной printer - она у вас не умирает раньше времени?

      R
      • Dec. 18, 2018, 2:59 a.m.
      • (edited)

      Добрый день.

      Единственное, что не известно в вашем примере - переменная html.

      туда приходит шаблон, для invoce, там все хорошо

      Если у вас не в main.c, тогда вопрос по переменной printer - она у вас не умирает раньше времени?

      думаю это правильный вопрос, Спасибо

      це слот який обробляє, генерацію PDF

      тут такой нюанс что я не могу использовать QApplication,

      потому что это серверная программа и с QApplication

      qt.qpa.screen: QXcbConnection: Could not connect to display
      Could not connect to any X display.

        Evgenii Legotckoi
        • Dec. 18, 2018, 3:37 a.m.

        QPrinter является GUI элементом, а значит придётся использовать QAplication.

        Я думаю, что вам стоит посмотреть в сторону python утилит, которые могут делать pdf из html, раз у вас серверная программа. Я же правильно понимаю, что у вас сервер под Линукс?

          R
          • Dec. 18, 2018, 3:44 a.m.

          да сервер под Linux и сам сервер написан на Qt поэтому и хотелось использовать возможности Qt
          ну тогда придется прикрепить велосипед на python

            Evgenii Legotckoi
            • Dec. 18, 2018, 4:12 a.m.

            Для конвертации pdf вы можете использовать python библиотеку через QProccess.

            А в остальном использовать Qt

              Александр Панюшкин
              • Dec. 18, 2018, 4:12 a.m.
              • The answer was marked as a solution.

              Запустите программу с ключом "-platform offscreen".
              Я проверил у себя на убунтовском сервере, с этим ключом у меня всё заработало.

                Не знал про такое. Хм )))

                  R
                  • Dec. 18, 2018, 6:50 a.m.
                  • (edited)

                  спасибо, так работает, запускается, и генерирует "-platform offscreen"

                  полная реализация

                  emit createInvoiceChanged(HTML_STRING)
                  
                  connect(this, &BuyItems::createInvoiceChanged, this, &BuyItems::createInvoice);
                  
                  void BuyItems::createInvoice(const QString &html)
                  {
                  
                      QTextDocument document;
                      document.setHtml(html);
                  
                      QPrinter printer(QPrinter::PrinterResolution);
                      printer.setOutputFormat(QPrinter::PdfFormat);
                      printer.setPaperSize(QPrinter::A4);
                      printer.setPageMargins(QMarginsF(15, 15, 15, 15));
                      printer.setOutputFileName("/tmp/test.pdf");
                  
                      document.setPageSize(printer.pageRect().size());
                      document.print(&printer);
                  }
                  
                  

                  входные данные проверил, нормально выглядят

                  <head>     <meta charset=\"utf-8\">     <title>A simple, clean, and responsive HTML invoice template</title>          <style>     .invoice-box {         max-width: 800px;         margin: auto;         padding: 30px;         border: 1px solid #eee;         box-shadow: 0 0 10px rgba(0, 0, 0, .15);         font-size: 16px;         line-height: 24px;         font-family: 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;         color: #555;     }          .invoice-box table {         width: 100%;         line-height: inherit;         text-align: left;     }          .invoice-box table td {         padding: 5px;         vertical-align: top;     }          .invoice-box table tr td:nth-child(2) {         text-align: right;     }          .invoice-box table tr.top table td {         padding-bottom: 20px;     }          .invoice-box table tr.top table td.title {         font-size: 45px;         line-height: 45px;         color: #333;     }          .invoice-box table tr.information table td {         padding-bottom: 40px;     }          .invoice-box table tr.heading td {         background: #eee;         border-bottom: 1px solid #ddd;         font-weight: bold;     }          .invoice-box table tr.details td {         padding-bottom: 20px;     }          .invoice-box table tr.item td{         border-bottom: 1px solid #eee;     }          .invoice-box table tr.item.last td {         border-bottom: none;     }          .invoice-box table tr.total td:nth-child(2) {         border-top: 2px solid #eee;         font-weight: bold;     }          @media only screen and (max-width: 600px) {         .invoice-box table tr.top table td {             width: 100%;             display: block;             text-align: center;         }                  .invoice-box table tr.information table td {             width: 100%;             display: block;             text-align: center;         }     }          /** RTL **/     .rtl {         direction: rtl;         font-family: Tahoma, 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;     }          .rtl table {         text-align: right;     }          .rtl table tr td:nth-child(2) {         text-align: left;     }     </style> </head>  <body>     <div class=\"invoice-box\">         <table cellpadding=\"0\" cellspacing=\"0\">             <tr class=\"top\">                 <td colspan=\"2\">                     <table>                         <tr>                             <td class=\"title\">                                 <img src=\"https://www.sparksuite.com/images/logo.png\" style=\"width:100%; max-width:300px;\">                             </td>                                                          <td>                                 Invoice #: 201811075103237<br>                                 Created: 2018-12-18<br>                                 Due: 2018-12-18                             </td>                         </tr>                     </table>                 </td>             </tr>                          <tr class=\"information\">                 <td colspan=\"2\">                     <table>                         <tr>                             <td>                                 SP Z.o.o.<br>                                 WLADY, nr 6\\12<br>                                 KRAKOW, 30454,                            </td>                                                          <td>                                 Victor Gnatiak<br>ul. OKIETKA, nr 6A, lok. 12<br>Krakow, 7588                             </td>                         </tr>                     </table>                 </td>             </tr>                          <tr class=\"heading\">                 <td>                     Payment Method                 </td>                                  <td>                                      </td>             </tr>                          <tr class=\"details\">                 <td>                     PayPal                 </td>                                  <td>                                      </td>             </tr>                          <tr class=\"heading\">                 <td>                     Item                 </td>                                  <td>                     Price                 </td>             </tr>              \t\t\t\t<tr class=\"item\"><td>39 test buy items</td><td>20</td></tr>                                      <tr class=\"item last\">                 <td>                     Incl. VAT(23%)                 </td>                                  <td>                     4.6                 </td>             </tr>                          <tr class=\"total\">                 <td></td>                                  <td>                    Total: 20                 </td>             </tr>         </table>     </div> </body> </html>
                  

                  осталась только одна проблема))
                  https://clip2net.com/s/3YHj0KS

                    Александр Панюшкин
                    • Dec. 18, 2018, 6:57 a.m.

                    А что не нравится? Красота же! :)

                    Содержимое html всё же нужно для того, чтобы попытаться это смоделировать.
                    Подозреваю, что у вас какое-то "несворение" кодировок. Попробуйте всё в utf-8 строго конвертировать.

                      именно так, проблема в кодировке, а именно в отсутствии шрифтов на сервере, для меня вопрос решился в CentOS 7
                      yum install curl cabextract xorg-x11-font-utils fontconfig

                      всем спасибо за помощь))

                        Comments

                        Only authorized users can post comments.
                        Please, Log in or Sign up
                        AD

                        C ++ - Test 004. Pointers, Arrays and Loops

                        • Result:50points,
                        • Rating points-4
                        m

                        C ++ - Test 004. Pointers, Arrays and Loops

                        • Result:80points,
                        • Rating points4
                        m

                        C ++ - Test 004. Pointers, Arrays and Loops

                        • Result:20points,
                        • Rating points-10
                        Last comments
                        i
                        innorwallNov. 15, 2024, 5:44 a.m.
                        Qt/C++ - Lesson 039. How to paint stroke in QSqlTableModel by value in the column? Many OPKs would advise users to start using the test strips around day 9 of your cycle, considering day 1 to be the first day of full menstrual flow buy priligy australia
                        i
                        innorwallNov. 15, 2024, 2:27 a.m.
                        Release of C++/Qt and QML application deployment utility CQtDeployer v1.4.0 (Binary Box) optionally substituted alkoxy, optionally substituted alkenyloxy, optionally substituted alkynyloxy, optionally substituted aryloxy, OCH, OC H, OC H, OC H, OC H, OC H, OC H, O C CH, OCH CH OH, O…
                        i
                        innorwallNov. 14, 2024, 9:26 p.m.
                        Qt/C++ - Lesson 031. QCustomPlot – The build of charts with time buy generic priligy We can just chat, and we will not lose too much time anyway
                        i
                        innorwallNov. 14, 2024, 7:03 p.m.
                        Qt/C++ - Lesson 060. Configuring the appearance of the application in runtime I didnt have an issue work colors priligy dapoxetine 60mg revia cost uk August 3, 2022 Reply
                        i
                        innorwallNov. 14, 2024, 12:07 p.m.
                        Circuit switching and packet data transmission networks Angioedema 1 priligy dapoxetine
                        Now discuss on the forum
                        t
                        tonypeachey1Nov. 15, 2024, 6:04 a.m.
                        google domain [url=https://google.com/]domain[/url] domain [http://www.example.com link title]
                        i
                        innorwallNov. 15, 2024, 5:50 a.m.
                        добавить qlineseries в функции priligy for sale Gently flush using an ear syringe
                        i
                        innorwallNov. 11, 2024, 10:55 a.m.
                        Всё ещё разбираюсь с кешем. priligy walgreens levitra dulcolax carbs The third ring was found to be made up of ultra relativistic electrons, which are also present in both the outer and inner rings
                        9
                        9AnonimOct. 25, 2024, 9:10 a.m.
                        Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…

                        Follow us in social networks