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
AutoSpider (talk | contribs) (Convert ExpressionEngine section headers) |
AutoSpider (talk | contribs) (Decode HTML entity names) |
||
Line 11: | Line 11: | ||
printer.setOutputFormat(QPrinter::PdfFormat); | printer.setOutputFormat(QPrinter::PdfFormat); | ||
printer.setOutputFileName(fileName); | printer.setOutputFileName(fileName); | ||
doc->print(& | 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. |
Revision as of 17:13, 12 March 2015
This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine. Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean. |
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