Exporting a document to PDF: Difference between revisions
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( | <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(&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''' | '''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(&printer); // doc is QTextDocument'''
We can use the printer class to print the document to a file : a pdf file.
Categories snippets