Exporting a document to PDF: Difference between revisions
Jump to navigation
Jump to search
AutoSpider (talk | contribs) (Decode HTML entity names) |
Olivier M. (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
{{ | Found it very easy to convert a {{DocLink|QTextDocument}} to PDF in Qt, and useful in scenarios like creating reports etc. | ||
For example, consider the following snippet: | |||
<code lang="cpp"> | |||
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); | |||
</code> | |||
[[Category:snippets]] | |||
[[snippets]] |
Revision as of 08:04, 28 May 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);