2

iText5中,我们可以使用章节和章节来添加标题和书签。
然后标题将H1在可访问的 PDF 中显示为标签。
我怎么能做到这一点iText7

4

1 回答 1

7

在 iText7 中,你会这样做:

@Test
public void run() throws IOException {

    File outputFile = getOutputFile();

    PdfDocument pdfDocument = new PdfDocument(new PdfWriter(outputFile));
    pdfDocument.setTagged();

    Document layoutDocument = new Document(pdfDocument);

    Paragraph para = new Paragraph("The Raven")
                        .setFontColor(new DeviceRgb(8, 73, 117))
                        .setFontSize(20f);
                        para.getAccessibilityProperties().setRole(StandardRoles.H1);
    layoutDocument.add(para);

    layoutDocument.add(new Paragraph("Once upon a midnight dreary\nWhile I pondered weak and weary\nOver many a quaint and curious volume\nOf forgotten lore"));

    pdfDocument.close();

    Desktop.getDesktop().open(outputFile);
}

使用 Adob​​e Reader 检查标签以确认已应用正确的标签。

在此处输入图像描述

于 2018-06-04T11:50:45.300 回答