同一文档,在不同的文档查看器或者编译环境中,需要对该文档进行相应的格式转换。下面的内容中,将介绍通过Java编程来实现PPT文档格式转换的方法。
使用工具:
Spire.Presentation for Java
IntelliJ IDEA
Jar文件获取及导入:
方法1:通过官网获取jar文件包。下载文件后,解压,并将lib文件夹下的Spire.Presentation.jar文件导入IDEA程序。
方法2:通过maven仓库安装导入。
Java代码示例(供参考)
【示例1】PPT转为图片
import com.spire.presentation.*; import javax.imageio.ImageIO; import java.awt.image.BufferedImage; import java.io.File; public class PPTtoPNG { public static void main(String[] args) throws Exception{ //创建Presentation对象 Presentation ppt = new Presentation(); //加载示例文档 ppt.loadFromFile("sample.pptx"); //遍历幻灯片 for (int i = 0; i < ppt.getSlides().getCount(); i++) { //将幻灯片保存为BufferedImage对象 BufferedImage image = ppt.getSlides().get(i).saveAsImage(); //将BufferedImage保存为PNG格式文件 String fileName = String.format("ToImage.png", i); ImageIO.write(image, "PNG",new File(fileName)); } ppt.dispose(); } }