- Apache POI PPT 教程
- Apache POI PPT - 主页
- Apache POI PPT - 概述
- Apache POI PPT - Java API 风味
- Apache POI PPT - 安装
- Apache POI PPT - 类和方法
- Apache POI PPT - 表示形式
- Apache POI PPT - 幻灯片布局
- Apache POI PPT - 幻灯片管理
- Apache POI PPT - 图像
- Apache POI PPT - 创建超级链接
- Apache POI PPT - 读取形状
- Apache POI PPT - 文本格式化
- Apache POI PPT - 合并
- Apache POI PPT - PPT 转图像
- Apache POI PPT 资源
- Apache POI PPT - 快速指南
- Apache POI PPT - 有用资源
- Apache POI PPT - 讨论
Apache POI PPT - PPT 转图像
你可以将表示形式转换为图像文件。以下程序显示了如何执行此操作。
import java.awt.Color; import java.awt.Dimension; import java.awt.Graphics2D; import java.awt.geom.Rectangle2D; import java.awt.image.BufferedImage; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.util.List; import org.apache.poi.xslf.usermodel.XMLSlideShow; import org.apache.poi.xslf.usermodel.XSLFSlide; public class PptToImage { public static void main(String args[]) throws IOException { //creating an empty presentation File file=new File("pptToImage.pptx"); XMLSlideShow ppt = new XMLSlideShow(new FileInputStream(file)); //getting the dimensions and size of the slide Dimension pgsize = ppt.getPageSize(); List<XSLFSlide> slide = ppt.getSlides(); BufferedImage img = null; for (int i = 0; i < slide.size(); i++) { img = new BufferedImage(pgsize.width, pgsize.height,BufferedImage.TYPE_INT_RGB); Graphics2D graphics = img.createGraphics(); //clear the drawing area graphics.setPaint(Color.white); graphics.fill(new Rectangle2D.Float(0, 0, pgsize.width, pgsize.height)); //render slide.get(i).draw(graphics); } //creating an image file as output FileOutputStream out = new FileOutputStream("ppt_image.png"); javax.imageio.ImageIO.write(img, "png", out); ppt.write(out); System.out.println("Image successfully created"); out.close(); } }
将上述 Java 代码另存为 PpttoPNG.java,然后从命令提示符处按如下所示进行编译和执行 −
$javac PpttoPNG.java $java PpttoPNG
它将编译并执行以生成以下输出 −
Image created successfully
以下快照显示了作为输入提供的表示形式 −
以下是给定位置创建的图像快照。
广告