qt – 如何使用可复制文本从QGraphicsScene生成pdf文件?

前端之家收集整理的这篇文章主要介绍了qt – 如何使用可复制文本从QGraphicsScene生成pdf文件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的代码通过将QGraphicsScene内容渲染到正确初始化的QPrinter上来生成pdf。
在处理应用程序这样的文本可以编辑,复制到剪贴板等。如何从QGraphicsScene生成pdf,我的文本字符串也可以复制,或者这是不可能的,我需要为这样的任务创建QTextDocument?
QGraphicsTextItem* textItem = new QGraphicsTextItem ( text );

textItem->setPlainText ( text );
textItem->setTextInteractionFlags ( Qt::TextEditorInteraction );
textItem->setFlags( QGraphicsItem::ItemIsSelectable | textItem->flags() );

scene->addItem( textItem );

QPrinter pdfPrinter; 
pdfPrinter.setOutputFormat( QPrinter::PdfFormat );
pdfPrinter.setPaperSize( QSize(scene->width(),scene->height()),QPrinter::Point );
pdfPrinter.setFullPage(true);
pdfPrinter.setOutputFileName( path );

QPainter pdfPainter;
pdfPainter.begin( &pdfPrinter);
scene->render( &pdfPainter );
pdfPainter.end();

解决方法

看来你必须使用QTextDocument并将您的内容写成HTML。看到我的回答和我的意见,问题: Qt4: Print a SQL table to PDF

编辑:我做了一个调试会话(在Windows7中使用Visual Studio),并进入场景 – >渲染。在某些步骤中,文件qgraphicsitem.cpp(Qt 4.8.0中的第10067行)中的QGraphicsTextItem :: paint(…)被调用,您可以在其中看到文本项存储在QTextDocument中。

我的结论(从参考的问题):文本打印为pdf文档的文本,这意味着您无法选择或复制文本只是您的pdf查看器的一个文物。如果您的平台可以使用包含pdftotext的xpdf,您可以轻松地验证这一点。

原文链接:https://www.f2er.com/css/218361.html

猜你在找的CSS相关文章