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
Olivier M. (talk | contribs) No edit summary |
(Added Cleanup note) |
||
Line 1: | Line 1: | ||
{{Cleanup|reason=No printsupport on mobile platform (iOS), different issues on different targets}} | |||
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. | ||
Revision as of 13:39, 2 June 2015
This article may require cleanup to meet the Qt Wiki's quality standards. Reason: No printsupport on mobile platform (iOS), different issues on different targets Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean. |
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);