-
Java 创建并应用PPT幻灯片母版
幻灯片母版,可在幻灯片中预先存储设计模板信息,包括字形、占位符大小或位置、背景设计和配色方案等;对设定好的母版可应用于所有幻灯片,也可设计多个不同母版应用于不同幻灯片。下面通过Java代码示例介绍如何创建单一母版以及不同母版。
使用工具:Free Spire.Office for Java(免费版)
Jar获取及导入:官网下载jar包 https://www.e-iceblue.cn/Downloads/Free-Spire-Office-JAVA.html,并解压将lib文件夹下的jar文件导入Java程序,或者通过maven仓库下载导入 https://www.e-iceblue.cn/licensing/install-spirepdf-for-java-from-maven-repository.html
如下导入效果:
Java 代码示例
1. 创建单一母版,应用到所有幻灯片
import com.spire.presentation.*; import com.spire.presentation.drawing.BackgroundType; import com.spire.presentation.drawing.FillFormatType; import com.spire.presentation.drawing.IImageData; import com.spire.presentation.drawing.PictureFillType; import javax.imageio.ImageIO; import java.awt.*; import java.awt.geom.Rectangle2D; import java.awt.image.BufferedImage; import java.io.FileInputStream; public class CreateMasterSlide { public static void main(String[] args) throws Exception { //创建PPT文档,并设置幻灯片大小 Presentation ppt = new Presentation(); ppt.getSlideSize().setType(SlideSizeType.SCREEN_16_X_9); //获取第一张母版 IMasterSlide masterSlide = ppt.getMasters().get(0); //设置母版背景 BufferedImage image = ImageIO.read(new FileInputStream("tp.png")); IImageData imageData = ppt.getImages().append(image); masterSlide.getSlideBackground().setType(BackgroundType.CUSTOM); masterSlide.getSlideBackground().getFill().setFillType(FillFormatType.PICTURE); masterSlide.getSlideBackground().getFill().getPictureFill().setFillType(PictureFillType.STRETCH); masterSlide.getSlideBackground().getFill().getPictureFill().getPicture().setEmbedImage(imageData); //添加图片到母版 image = ImageIO.read(new FileInputStream("logo.png")); imageData = ppt.getImages().append(image); IEmbedImage imageShape = masterSlide.getShapes().appendEmbedImage(ShapeType.RECTANGLE,imageData,new Rectangle2D.Float((float) ppt.getSlideSize().getSize().getWidth()-240,40,60,60)); imageShape.getLine().setFillType(FillFormatType.NONE); //添加文字到母版 IAutoShape textShape = masterSlide.getShapes().appendShape(ShapeType.RECTANGLE, new Rectangle2D.Float((float) ppt.getSlideSize().getSize().getWidth()-230,85,200,30)); textShape.getTextFrame().setText("文娱传媒"); textShape.getTextFrame().getTextRange().setFontHeight(20f); textShape.getTextFrame().getTextRange().getFill().setFillType(FillFormatType.SOLID); textShape.getTextFrame().getTextRange().getFill().getSolidColor().setColor(Color.black); textShape.getTextFrame().getTextRange().getParagraph().setAlignment(TextAlignmentType.CENTER); textShape.getFill().setFillType(FillFormatType.NONE); textShape.getLine().setFillType(FillFormatType.NONE); //添加一张幻灯片(创建PPT文档时,已默认生成一张幻灯片,这里添加一张幻灯片可对比查看母版添加效果) ppt.getSlides().append(); //保存文档 ppt.saveToFile("CreateSlideMaster.pptx", FileFormat.PPTX_2013); ppt.dispose(); } }
母版创建效果:
2. 创建多个母版,应用于不同幻灯片
import com.spire.presentation.*; import com.spire.presentation.drawing.BackgroundType; import com.spire.presentation.drawing.FillFormatType; import com.spire.presentation.drawing.IImageData; import com.spire.presentation.drawing.PictureFillType; import javax.imageio.ImageIO; import java.awt.*; import java.awt.geom.Rectangle2D; import java.awt.image.BufferedImage; import java.io.FileInputStream; public class CreateMasterSlide2 { public static void main(String[] args) throws Exception{ //创建PPT文档,并设置幻灯片大小 Presentation ppt = new Presentation(); ppt.getSlideSize().setType(SlideSizeType.SCREEN_16_X_9); //插入4页幻灯片(连同默认的幻灯片,文档中共5页) for (int i = 0; i < 4; i++) { ppt.getSlides().append(); } //获取默认的母版 IMasterSlide first_master = ppt.getMasters().get(0); //创建并获取第二个母板 ppt.getMasters().appendSlide(first_master); IMasterSlide second_master = ppt.getMasters().get(1); //为两个母版分别设置不同的背景图片 BufferedImage image = ImageIO.read(new FileInputStream("pic1.png")); IImageData imageData = ppt.getImages().append(image); first_master.getSlideBackground().setType(BackgroundType.CUSTOM); first_master.getSlideBackground().getFill().setFillType(FillFormatType.PICTURE); first_master.getSlideBackground().getFill().getPictureFill().setFillType(PictureFillType.STRETCH); first_master.getSlideBackground().getFill().getPictureFill().getPicture().setEmbedImage(imageData); IAutoShape textShape = first_master.getShapes().appendShape(ShapeType.RECTANGLE, new Rectangle2D.Float((float) ppt.getSlideSize().getSize().getWidth()/3,180,200,30)); textShape.getTextFrame().setText("首页母版"); textShape.getTextFrame().getTextRange().setFontHeight(40f); textShape.getTextFrame().getTextRange().getFill().setFillType(FillFormatType.SOLID); textShape.getTextFrame().getTextRange().getFill().getSolidColor().setColor(Color.red); textShape.getTextFrame().getTextRange().getParagraph().setAlignment(TextAlignmentType.CENTER); textShape.getFill().setFillType(FillFormatType.NONE); textShape.getLine().setFillType(FillFormatType.NONE); image = ImageIO.read(new FileInputStream("pic2.png")); imageData = ppt.getImages().append(image); second_master.getSlideBackground().setType(BackgroundType.CUSTOM); second_master.getSlideBackground().getFill().setFillType(FillFormatType.PICTURE); second_master.getSlideBackground().getFill().getPictureFill().setFillType(PictureFillType.STRETCH); second_master.getSlideBackground().getFill().getPictureFill().getPicture().setEmbedImage(imageData); //在第一页应用第一个母版及版式(板式6为空板式) ppt.getSlides().get(0).setLayout(first_master.getLayouts().get(6)); //在剩下的幻灯片应用第二个母版及版式 for (int i = 1; i < ppt.getSlides().getCount(); i++) { ppt.getSlides().get(i).setLayout(second_master.getLayouts().get(6)); } //保存文档 ppt.saveToFile("MultiSlideMaters.pptx", FileFormat.PPTX_2013); ppt.dispose(); } }
多个母版创建效果:
出 处:https://www.cnblogs.com/Yesi/p/12836159.html
最新更新
带有参数的装饰器
类装饰器
django中的auth模块与admin后台管理
python的日期处理
字符串常用方法
基本数据类型概述
python-map()函数基本用法
python带你实现任意下载AcFun视频数据~
bbs项目之注册功能
变量的定义和使用
三大常用数据库事务详解之三:事务运行
三大常用关系型数据库事务详解之二:基
三大关系型数据库事务详解之一:基本概
MongoDB常用命令(2)
MongoDB基本介绍与安装(1)
SQLServer触发器调用JavaWeb接口
SQL Server索引的原理深入解析
SqlServer2016模糊匹配的三种方式及效率问题
SQL中Truncate的用法
sqlserver 多表关联时在where语句中慎用tri
VB.NET中如何快速访问注册表
ASP.NET中图象处理过程详解
Vue(1)Vue安装与使用
JavaScript 语言入门
js将一段字符串的首字母转成大写
纯原生html编写的h5视频播放器
H5仿原生app短信验证码vue2.0组件附源码地
TypeScript(4)接口
TypeScript(3)基础类型
TypeScript(2)WebStorm自动编译TypeScript配置