0

编辑:我设法获得了一个编译且不崩溃的版本。剩下的唯一一件事就是获得所需的输出,但是这个特定的问题(为什么会崩溃)已经得到解答,所以我要结束这个问题了。我将在损坏的代码之前发布工作代码。

再会!我正在尝试创建一个仅创建 pdf 文档的小示例。一切都可以编译,但是当程序启动时,它就会崩溃。我正在使用 Qt 5.0.0 版

---新的工作代码---

int main( int argc, char **argv )
{
    QApplication app( argc, argv );

  QTextDocument doc;
  doc.setHtml( "<p>A QTextDocument can be used to present formatted text "
               "in a nice way.</p>"
               "<p align=center>It can be <b>formatted</b> "
               "<font size=+2>in</font> <i>different</i> ways.</p>"
               "<p>The text can be really long and contain many "
               "paragraphs. It is properly wrapped and such...</p>" );
   QPrinter printer;
   printer.setOutputFileName("C:\\Users\\SameTime\\Desktop\\Cutie\\PDFPrintMaybe");
   printer.setOutputFormat(QPrinter::PdfFormat);
   doc.print(&printer);
   printer.newPage();

  return 0;
}

这是项目代码:

#-------------------------------------------------
#
# Project created by QtCreator 2013-06-08T10:07:11
#
#-------------------------------------------------

QT       += core

QT       -= gui
QT += printsupport
TARGET = PDFPrintMaybe
CONFIG   += console
CONFIG   -= app_bundle

TEMPLATE = app


SOURCES += main.cpp

----有错误的旧代码---这是主要的cpp:

#include <QCoreApplication>
#include <QTextDocument>
#include <QPrinter>


int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);
    QTextDocument doc;
    doc.setHtml("<h1>Testing, testing, is this thing on?!</h1>");
    QPrinter printer;
    printer.setOutputFileName("C:\\Users\\SameTime\\Desktop\\Cutie\\PDFPrintMaybe");
    printer.setOutputFormat(QPrinter::PdfFormat);
    doc.print(&printer);
    printer.newPage();
    return a.exec();
}

我有点不知所措,因为它正在编译但运行时(几乎)立即崩溃。

4

1 回答 1

0

尝试在堆上创建对象,否则当它们超出范围时它们会被自动删除,然后框架可能会尝试再次删除它们并崩溃。

QTextDocument *doc = new QTextDocument();
doc->setHtml("<h1>Testing, testing, is this thing on?!</h1>");
QPrinter* printer = new QPrinter();
printer->setOutputFileName("C:\\Users\\SameTime\\Desktop\\Cutie\\PDFPrintMaybe");
printer->setOutputFormat(QPrinter::PdfFormat);
doc->print(printer);
printer->newPage();
于 2013-06-08T07:32:10.717 回答