Java 将PPT转换为图片格式

现如今,PPT已然成为了许多领域常用的办公软件之一。为了方便后期浏览,通常会将PPT进行转换处理,较为常用的是转换为图片格式。除了PPT幻灯片的整体转换外,PPT中的形状也可进行单独转换。本文就将通过使用Java程序来演示如何将PPT幻灯片整体转换为图片格式(主要为BMP和SVG格式)及将PPT中的形状转换为图片格式(PNG格式)。

使用工具: Free Spire.Presentation for Java(免费版)

Jar文件获取及导入:

方法1:通过官方网站下载获取jar包。解压后将lib文件夹下的Spire.Presentation.jar文件导入Java程序。(如下图)
Java 将PPT转换为图片格式_第1张图片

方法2:通过maven仓库安装导入。具体安装教程详见此网页

原文档截图:

Java 将PPT转换为图片格式_第2张图片

【示例1】PowerPoint转BMP格式

import com.spire.presentation.Presentation;
import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.io.File;

public class ConvertBMP {
    public static void main(String[] args) throws Exception {
        Presentation ppt = new Presentation();
        ppt.loadFromFile("D:\\Desktop\\Sample.pptx");
        //将PPT保存为图片格式
        for (int i = 0; i < ppt.getSlides().getCount(); i++) {
            BufferedImage image = ppt.getSlides().get(i).saveAsImage();
            String fileName = String.format("output/Topng-%d.png", i);
            ImageIO.write(image, "PNG",new File(fileName));
        }
        ppt.dispose();
    }
}

转换效果:

Java 将PPT转换为图片格式_第3张图片

【示例2】PowerPoint转SVG格式

import com.spire.presentation.Presentation;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.util.ArrayList;

public class ConvertSVG {
    public static void main(String[] args) throws Exception {
        Presentation ppt = new Presentation();
        ppt.loadFromFile("D:\\Desktop\\Sample.pptx");

        //将PPT保存为SVG格式
        ArrayList svgBytes =(ArrayList) ppt.saveToSVG();
        int count = svgBytes.size();
        int len = svgBytes.size();
        for (int i = 0; i < len; i++)
        {
            byte[] bytes = svgBytes.get(i);
            FileOutputStream stream = new FileOutputStream(String.format("output/ToSVG-%d.svg", i));
            stream.write(bytes);
        }
        ppt.dispose();
    }
}

转换效果:

Java 将PPT转换为图片格式_第4张图片

【示例3】PPT形状(表格、文本框、三角形、图表等)转图片格式

原文档截图:

Java 将PPT转换为图片格式_第5张图片

代码示例:

import com.spire.presentation.Presentation;
import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.io.File;

public class ConvertPNG {
    public static void main(String[] args) throws Exception {
        String inputFile = "D:\\Desktop\\Sample2.pptx";
        String outputPath = "output/";
//创建实例
        Presentation ppt = new Presentation();
//加载文件
        ppt.loadFromFile(inputFile);
        for (int i = 0; i < ppt.getSlides().get(0).getShapes().getCount(); i++)
        {
            String fileName = outputPath + String.format("shapeToImage-%1$s.png", i);
            //将shape保存为image对象
            BufferedImage image = ppt.getSlides().get(0).getShapes().saveAsImage(i);
            //写出图片
            ImageIO.write(image, "PNG",  new File(fileName));
        }
    }
}

转换效果:

Java 将PPT转换为图片格式_第6张图片

(本文完)

你可能感兴趣的:(java,ppt,转换)