Itext不支持pdf中的书签

问题描述 投票:0回答:1

当从HTML内容生成pdf时,iText5不支持内联书签href。但是,它适用于外部链接。

有没有什么办法可以在从HTML内容生成pdf的同时处理同一pdf中其他页面的内联链接?

<a href='#last'>Last div content</a>   <!--Not working in pdf-->
<br />
<a href='https://www.google.com'>External link</a>   <!--working in pdf-->
<br />  

<div id="last">last content</div>
itext html-to-pdf
1个回答
0
投票

iText 5 XMLWorker在their product page上被明确标记为已弃用。

最好的选择是切换到iText7 + pdfHTML

public void createPdf(String html, String dest) throws IOException {
    HtmlConverter.convertToPdf(html, new FileOutputStream(dest));
}
© www.soinside.com 2019 - 2024. All rights reserved.