分页符和 Alt 标签在 Itext7 html2pdf 中不起作用
Page Break and Alt Tag not working in Itext7 html2pdf
我正在尝试文档页面中解释的示例代码
但是,当我生成 pdf 时,未设置 alt 标签,因此 pdf 可访问性检查器会抱怨。我还发现分页符在给定示例 html 页面中不起作用。有人可以帮我解决这两个问题吗?我的 POM.xml 具有以下依赖项。我已经创建了准确的文件并复制了上面文章中提到的代码。
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itext7-core</artifactId>
<version>7.0.2</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>html2pdf</artifactId>
<version>1.0.0</version>
</dependency>
<repository>
<id>itext</id>
<name>iText Repository - releases</name>
<url>https://repo.itextsupport.com/releases</url>
</repository>
谢谢
SGK
在 pdfHTML v1.0.1
中添加了对 CSS 属性 后分页的支持
缺少 /alt 标签是 v1.0.0 中的错误,已在 v1.0.1 中修复
(为了可见性,将此作为答案发布,因为这个问题以前在这里和那里弹出过)。
我正在尝试文档页面中解释的示例代码
但是,当我生成 pdf 时,未设置 alt 标签,因此 pdf 可访问性检查器会抱怨。我还发现分页符在给定示例 html 页面中不起作用。有人可以帮我解决这两个问题吗?我的 POM.xml 具有以下依赖项。我已经创建了准确的文件并复制了上面文章中提到的代码。
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itext7-core</artifactId>
<version>7.0.2</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>html2pdf</artifactId>
<version>1.0.0</version>
</dependency>
<repository>
<id>itext</id>
<name>iText Repository - releases</name>
<url>https://repo.itextsupport.com/releases</url>
</repository>
谢谢
SGK
在 pdfHTML v1.0.1
中添加了对 CSS 属性 后分页的支持缺少 /alt 标签是 v1.0.0 中的错误,已在 v1.0.1 中修复
(为了可见性,将此作为答案发布,因为这个问题以前在这里和那里弹出过)。