gpt4 book ai didi

c++ - QTextDocument::drawContents 仅以 96 dpi 呈现

转载 作者:可可西里 更新时间:2023-11-01 17:52:19 26 4
gpt4 key购买 nike

我正在使用 QPrinter 和 QPainter 创建高分辨率 (1200 dpi) PDF 文档。我正在尝试使用 QTextDocument::drawContents 以相同的分辨率绘制文本。我想使用 QTextDocument 的原因是因为我需要在我的文档中包含许多表格和格式化文本。

我的问题是 QTextDocument::drawContents 总是以屏幕分辨率插入文本,在我的例子中是 96 dpi。到目前为止,我发现的所有解决方案都建议缩放文本以达到正确的大小。但是,这会导致文本质量低下,这是我无法承受的。

我的问题:有没有办法以高分辨率绘制 QTextDocument 的内容?

下面的代码创建了一个包含 2 行文本的 PDF 文件,一行使用 QPainter::drawText 绘制,另一行使用 QTextDocument::drawContents 绘制。我使用了 Arial 8pt 字体来强调缩放导致的低质量问题。

// Read the screen resolution for scaling
QPrinter screenPrinter(QPrinter::ScreenResolution);
int screenResolution = screenPrinter.resolution();

// Setup the font
QFont font;
font.setFamily("Arial");
font.setPointSize(8);

// Define locations to insert text
QPoint textLocation1(20,10);
QPoint textLocation2(20,20);

// Define printer properties
QPrinter printer(QPrinter::HighResolution);
printer.setOrientation(QPrinter::Portrait);
printer.setPaperSize(QPrinter::A4);
printer.setResolution(1200);
printer.setOutputFormat(QPrinter::PdfFormat);
printer.setOutputFileName("test.pdf");

// Write text using QPainter::drawText
QPainter painter;
painter.begin(&printer);
painter.setFont(font);
painter.drawText(textLocation1, "QPainter::drawText");

// Write text using QTextDocument::drawContents
QTextDocument doc;
doc.setPageSize(printer.pageRect().size());
QTextCursor cursor(&doc);
QTextCharFormat charFormat;
charFormat.setFont(font);
cursor.insertText("QTextDocument::drawContents", charFormat);
painter.save();
painter.translate(textLocation2);
painter.scale(printer.resolution()/screenResolution, printer.resolution()/screenResolution);
doc.drawContents(&painter);
painter.restore();
painter.end();

最佳答案

QTextDocument 使用其自己的布局绘制设备,默认情况下为屏幕分辨率。
你可以改变它:

doc.documentLayout()->setPaintDevice(&printer);
// just before
doc.setPageSize(printer.pageRect().size());

关于c++ - QTextDocument::drawContents 仅以 96 dpi 呈现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10299633/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com