1

我使用以下代码生成 PDF:

html="<htm><head></head><body><a href="a.html"><img src="a.png"/></a><a href="b.html">b</a></body></html>;

QTextDocument document;
document.setHtml(html);
QPrinter printer(QPrinter::PrinterResolution);
printer.setOutputFormat(QPrinter::PdfFormat);
printer.setOutputFileName("a.pdf");
document.print(&printer);

但是,图像上没有超链接。文字上的链接很好。如何在 img 元素上添加超链接?

4

0 回答 0