feature:实现了幻灯片的pdf和图片导出

This commit is contained in:
2025-11-25 13:33:25 +08:00
parent f7e77cdc5d
commit 16d9e58c57
5 changed files with 309 additions and 1 deletions
+12
View File
@@ -26,6 +26,11 @@
<artifactId>javafx-fxml</artifactId>
<version>${javafx.version}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-swing</artifactId>
<version>${javafx.version}</version>
</dependency>
<!-- Gson库,用于JSON序列化 -->
<dependency>
@@ -34,6 +39,13 @@
<version>2.10.1</version>
</dependency>
<!-- iText库,用于PDF生成 -->
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>5.5.13.3</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>