Exporting a document to PDF: Difference between revisions
Jump to navigation
Jump to search
(Added Cleanup note) |
(Cleanup) |
||
Line 1: | Line 1: | ||
{{ | {{LangSwitch}} | ||
[[Category:snippets]] | |||
Found it very easy to convert a {{DocLink|QTextDocument}} to PDF in Qt, and useful in scenarios like creating reports etc. | Found it very easy to convert a {{DocLink|QTextDocument}} to PDF in Qt, and useful in scenarios like creating reports etc. | ||
Line 13: | Line 13: | ||
doc->print(&printer); | doc->print(&printer); | ||
</code> | </code> | ||
Revision as of 17:44, 28 June 2015
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);
QTextDocument doc;
doc->print(&printer);