Qt wiki will be updated on October 12th 2023 starting at 11:30 AM (EEST) and the maintenance will last around 2-3 hours. During the maintenance the site will be unavailable.
Exporting a document to PDF: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
h1. Exporting a document to PDF | |||
Found it very easy to convert a QTextDocument to | Found it very easy to convert a QTextDocument to PDF in Qt. And useful in scenarios like creating reports etc. | ||
For example, Consider the following snippet, | For example, Consider the following snippet, | ||
<code> QString fileName = QFileDialog::getSaveFileName(this, tr("Save File&quot;),<br /> "untitled&quot;,tr("PDF Document ('''.pdf)"));<br /> QPrinter printer;<br /> printer.setOutputFormat(QPrinter::PdfFormat);<br /> printer.setOutputFileName(fileName);<br /> doc->print(&printer); // doc is QTextDocument'''</code> | |||
We can use the printer class to print the document to a file : a pdf file. | We can use the printer class to print the document to a file : a pdf file. | ||
'''Categories'''<br />[[ | '''Categories'''<br />[[snippets]] |
Revision as of 09:42, 24 February 2015
h1. Exporting a document to PDF
Found it very easy to convert a QTextDocument to PDF in Qt. And useful in scenarios like creating reports etc.
For example, Consider the following snippet,
QString fileName = QFileDialog::getSaveFileName(this, tr("Save File&quot;),<br /> "untitled&quot;,tr("PDF Document ('''.pdf)"));<br /> QPrinter printer;<br /> printer.setOutputFormat(QPrinter::PdfFormat);<br /> printer.setOutputFileName(fileName);<br /> doc->print(&printer); // doc is QTextDocument'''
We can use the printer class to print the document to a file : a pdf file.
Categories
snippets