* tif图片预览,改为支持转换为jpg后预览(JAI支持);加入tif->jpg->pdf转换后,以pdf格式预览,此种模式可完美支持打印纸张自适应。

This commit is contained in:
zhangzhen1979
2021-12-03 19:05:31 +08:00
committed by kl
parent 14151a6c46
commit b7760ab42a
7 changed files with 191 additions and 15 deletions

View File

@ -250,6 +250,26 @@
</dependency>
<dependency>
<groupId>com.lowagie</groupId>
<artifactId>itext</artifactId>
<version>2.1.7</version>
</dependency>
<dependency>
<groupId>javax.media</groupId>
<artifactId>jai_core</artifactId>
<version>1.1.2-beta</version>
<systemPath>${basedir}/lib/jai_core-1.1.2-beta.jar</systemPath>
</dependency>
<dependency>
<groupId>javax.media</groupId>
<artifactId>jai_codec</artifactId>
<version>1.1.3</version>
<systemPath>${basedir}/lib/jai_codec-1.1.3.jar</systemPath>
</dependency>
</dependencies>
<build>