【发布时间】:2018-07-13 15:22:41
【问题描述】:
【问题讨论】:
标签: itext7 section508
【问题讨论】:
标签: itext7 section508
可以将 AccessibilityProperties 添加到 Table 对象本身。 Summary 需要通过 PdfDictionary 来添加
PdfDictionary attr = new PdfDictionary();
attr.put(new PdfName("Summary"), new PdfString("Info about the table"));
table.getAccessibilityProperties().addAttributes(new PdfStructureAttributes(attr));
ApiDocs 可以找到here
【讨论】:
我尝试了上面的解决方案,但不幸的是 Adobe 的摘要可访问性检查失败。
根据规范,可访问性属性的结构应该有点不同。应该使用下一行:
tblContact.getAccessibilityProperties().addAttributes(new PdfStructureAttributes("Table").addTextAttribute("Summary","Table summary text" ));
【讨论】: