Exporting a document to PDF: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 5: Line 5:
For example, Consider the following snippet,
For example, Consider the following snippet,


<code> QString fileName = QFileDialog::getSaveFileName(this, tr(&quot;Save File&amp;quot;),<br /> &quot;untitled&amp;quot;,tr(&quot;PDF Document ('''.pdf)&quot;));<br /> QPrinter printer;<br /> printer.setOutputFormat(QPrinter::PdfFormat);<br /> printer.setOutputFileName(fileName);<br /> doc-&gt;print(&amp;printer); // doc is QTextDocument'''</code>
<code> QString fileName = QFileDialog::getSaveFileName(this, tr("Save File"),
"untitled",tr("PDF Document ('''.pdf)"));
QPrinter printer;
printer.setOutputFormat(QPrinter::PdfFormat);
printer.setOutputFileName(fileName);
doc->print(&amp;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 />[[snippets]]
'''Categories'''
[[snippets]]

Revision as of 10:03, 25 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"),
 "untitled",tr("PDF Document ('''.pdf)"));
 QPrinter printer;
 printer.setOutputFormat(QPrinter::PdfFormat);
 printer.setOutputFileName(fileName);
 doc->print(&amp;printer); // doc is QTextDocument'''

We can use the printer class to print the document to a file : a pdf file.

Categories snippets