QT QCustmPlot把折线图生成PDF

Posted 袁佳佳

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了QT QCustmPlot把折线图生成PDF相关的知识,希望对你有一定的参考价值。

void MainWindow::on_actionSave_Document_triggered()
{
  QString fileName = QFileDialog::getSaveFileName(this, "Save document...", qApp->applicationDirPath(), "*.pdf");
  if (!fileName.isEmpty())
  {
    QPrinter printer;
    printer.setFullPage(true);
    printer.setPaperSize(QPrinter::A4);
    printer.setOrientation(QPrinter::Portrait);
    printer.setOutputFormat(QPrinter::PdfFormat);
    printer.setOutputFileName(fileName);
    ui->textEdit->document()->print(&printer);
  }
}

以上是关于QT QCustmPlot把折线图生成PDF的主要内容,如果未能解决你的问题,请参考以下文章

使用Qt无法生成具有可接受输出质量的pdf

python 画折线图加一个legend

无法使用 Qt 生成具有可接受输出质量的 pdf

使用 Qt 浏览器下载 excel 文件作为附件

qt导出pdf包含图片与文字不能同时

VBS编程:怎样用VBS给EXCEL画折线图(A列X坐标,B列Y坐标), 谢谢