有限空间作业ZYPJ-20240805-00001 (4).docx (1.4 MB)
原始word文档显示图片正常,转换为pdf后个别图片变为x框了,版本24.7
xxxx.pdf (417.6 KB)
有限空间作业ZYPJ-20240805-00001 (4).docx (1.4 MB)
原始word文档显示图片正常,转换为pdf后个别图片变为x框了,版本24.7
xxxx.pdf (417.6 KB)
@niuqi0223 使用以下简单代码无法在我这边重现该问题:
Document doc = new Document("C:\\Temp\\in.docx");
doc.save("C:\\Temp\\out_java.pdf");
out_java.pdf (492.7 KB)
您能描述一下问题发生的环境吗?
springboot2.6.6,jdk1.8.0_333,aspose-words-24.7-jdk17.jar
public static void word2pdf(String docPath, String savePath) throws Exception {
com.aspose.words.Document document = new com.aspose.words.Document(docPath);
document.save(savePath);
}
不确定是否jdk版本过低导致的么?
新建了demo示例项目,测试没问题了,感谢感谢