ppt转成pdf用时过长,50Mppt需要用时两小时以上,代码示例:
public Boolean ppt2Pdf(String srcPath, OutputStream outputStream) {
try {
AsposeLicenseUtil.setSlidesLicense();
Presentation presentation = new Presentation(srcPath);
presentation.save(outputStream, com.aspose.slides.SaveFormat.Pdf);
return true;
} catch (Exception e) {
log.error(e.getMessage(), e);
return false;
}
}