powerpoint 演示文稿的背景可以设定演示文稿的基调和情绪,同时极大地提高幻灯片的美观度和感染力。powerpoint 幻灯片有五种类型的背景可用,包括纯色背景、渐变背景、图片背景、纹理背景和图案背景。这些背景分别适用于不同的使用场景。例如,专业的商业演示文稿可能会受益于简洁明了的纯色背景,而创意演示文稿则可能会使用具有启发性和趣味性的图片背景来吸引观众的注意力。本文将展示如何使用 spire.presentation for java 通过 java 程序来设置 powerpoint 演示文稿的背景。
- 给 powerpoint 幻灯片设置纯色背景
- 给 powerpoint 幻灯片设置渐变背景
- 给 powerpoint 幻灯片设置图片背景
- 给 powerpoint 幻灯片设置纹理背景
- 给 powerpoint 幻灯片设置图案背景
安装 spire.presentation for java
首先,您需要在 java 程序中添加 spire.presentation.jar 文件作为依赖项。jar 文件可以从此链接下载。如果您使用 maven,则可以将以下代码添加到项目的 pom.xml 文件中,从而轻松地在应用程序中导入 jar 文件。
com.e-iceblue
e-iceblue
https://repo.e-iceblue.cn/repository/maven-public/
e-iceblue
spire.presentation
8.9.4
给 powerpoint 幻灯片设置纯色背景
在自定义幻灯片背景之前,需要使用 slidebackground.settype(backgroundtype.custom) 方法来允许自定义背景。然后,使用 slidebackground.getfill().setfilltype(fillformattype.solid) 方法将背景类型设置为纯色背景,并使用 fileformat.getsolidcolor().setcolor() 方法设置背景颜色。
详细操作步骤如下:
- 创建 presentation 类的对象。
- 使用 presentation.loadfromfile() 方法载入演示文稿。
- 使用 presentation.getslides().get() 方法获取第一张幻灯片。
- 使用 islide.getslidebackground() 方法获取幻灯片的背景。
- 使用 slidebackground.settype(backgroundtype.custom) 方法将背景类型设置为自定义,以允许自定义背景。
- 使用 slidebackground.getfill().setfilltype(fillformattype.solid) 方法将背景填充类型设置为纯色。
- 使用 fileformat.getsolidcolor().setcolor() 方法自定义背景颜色。
- 使用 presentation.savetofile() 方法保存演示文稿。
- java
import com.spire.presentation.fileformat;
import com.spire.presentation.islide;
import com.spire.presentation.presentation;
import com.spire.presentation.slidebackground;
import com.spire.presentation.drawing.backgroundtype;
import com.spire.presentation.drawing.fillformat;
import com.spire.presentation.drawing.fillformattype;
import java.awt.*;
public class solidcolor {
public static void main(string[] args) throws exception {
//创建一个presentation类的对象
presentation ppt = new presentation();
//载入powerpoint演示文稿
ppt.loadfromfile("示例.pptx");
//获取第一张幻灯片
islide slide = ppt.getslides().get(0);
//获取幻灯片背景
slidebackground background = slide.getslidebackground();
//将背景类型设置为自定义
background.settype(backgroundtype.custom);
//将背景填充类型设置为纯色
background.getfill().setfilltype(fillformattype.solid);
//设置背景颜色
fillformat fillformat = background.getfill();
fillformat.getsolidcolor().setcolor(new color(199, 213, 237));
//保存演示文稿
ppt.savetofile("纯色背景.pptx", fileformat.auto);
}
}
给 powerpoint 幻灯片设置渐变背景
渐变背景可以通过将背景类型设置为渐变背景,然后设置渐变类型、停止点、颜色和角度来完成设置。具体步骤如下:
- 创建一个 presentation 类的对象。
- 使用 presentation.loadfromfile() 方法载入演示文稿。
- 使用 presentation.getslides().get() 方法获取第一张幻灯片。
- 使用 islide.getslidebackground() 方法获取幻灯片的背景。
- 使用 slidebackground.settype(backgroundtype.custom) 方法将背景类型设置为自定义,以允许自定义背景。
- 使用 slidebackground.getfill().setfilltype(fillformattype.gradient) 方法将背景的填充类型设置为渐变。
- 使用 gradientfillformat.setgradientshape(gradientshapetype.linear) 方法将渐变类型设置为线性渐变。
- 使用 gradientfillformat.getgradientstops().append() 方法添加渐变停止点并设置渐变颜色。
- 使用 gradientfillformat.getlineargradientfill().setangle() 方法设置线性渐变的角度。
- 使用 presentation.savetofile() 方法保存演示文稿。
- java
import com.spire.presentation.fileformat;
import com.spire.presentation.islide;
import com.spire.presentation.presentation;
import com.spire.presentation.slidebackground;
import com.spire.presentation.drawing.*;
import java.awt.*;
public class gradient {
public static void main(string[] args) throws exception {
//创建一个presentation类的对象
presentation ppt = new presentation();
//载入powerpoint演示文稿
ppt.loadfromfile("c:/users/sirion/desktop/示例.pptx");
//获取第一张幻灯片
islide slide = ppt.getslides().get(0);
//获取幻灯片背景
slidebackground background = slide.getslidebackground();
//将背景类型设置为自定义
background.settype(backgroundtype.custom);
//将背景填充类型设置为渐变
background.getfill().setfilltype(fillformattype.gradient);
//将渐变类型设置为线性渐变
gradientfillformat gradient = background.getfill().getgradient();
gradient.setgradientshape(gradientshapetype.linear);
//添加渐变停止点并设置颜色
gradient.getgradientstops().append(0f, new color(230, 255, 255));
gradient.getgradientstops().append(0.5f, new color(255, 255, 255));
gradient.getgradientstops().append(1f, new color(199, 213, 237));
//设置渐变角度
gradient.getlineargradientfill().setangle(90);
//保存演示文稿
ppt.savetofile("渐变背景.pptx", fileformat.auto);
}
}
给 powerpoint 幻灯片设置图片背景
在给幻灯片设置图片背景时,需要将背景类型设置为图片,然后将图片填充类型设置为拉伸填充,最后再设置背景图片。具体步骤如下:
- 创建一个 presentation 类的对象。
- 使用 presentation.loadfromfile() 方法载入演示文稿。
- 使用 presentation.getimages().append() 方法载入图片。
- 使用 presentation.getslides().get() 方法获取第一张幻灯片。
- 使用 islide.getslidebackground() 方法获取幻灯片的背景。
- 使用 slidebackground.settype(backgroundtype.custom) 方法将背景类型设置为自定义,以允许自定义背景。
- 使用 slidebackground.getfill().setfilltype(fillformattype.picture) 方法将背景的填充类型设置为图片。
- 使用 picturefillformat.setfilltype(picturefilltype.stretch) 方法将图片填充方式设置为拉伸填充。
- 使用 picturefillformat.getpicture().settransparency() 方法设置图片背景透明度。
- 使用 picturefillformat.getpicture().setembedimage() 方法设置背景图片。
- 使用 presentation.savetofile() 方法保存演示文稿。
- java
import com.spire.presentation.fileformat;
import com.spire.presentation.islide;
import com.spire.presentation.presentation;
import com.spire.presentation.slidebackground;
import com.spire.presentation.drawing.*;
import javax.imageio.imageio;
import java.awt.*;
import java.io.file;
public class picture {
public static void main(string[] args) throws exception {
//创建一个presentation类的对象
presentation ppt = new presentation();
//载入powerpoint演示文稿
ppt.loadfromfile("示例.pptx");
//载入图片
iimagedata image = ppt.getimages().append(imageio.read(new file("背景.jpg")));
//获取第一张幻灯片
islide slide = ppt.getslides().get(0);
//获取幻灯片背景
slidebackground background = slide.getslidebackground();
//将背景类型设置为自定义
background.settype(backgroundtype.custom);
//将背景填充类型设置为图片
background.getfill().setfilltype(fillformattype.picture);
//将图片填充方式设置为拉伸填充
picturefillformat picturefillformat = background.getfill().getpicturefill();
picturefillformat.setfilltype(picturefilltype.stretch);
//设置图片背景透明度
picturefillformat.getpicture().settransparency(50);
//设置背景图片
picturefillformat.getpicture().setembedimage(image);
//保存演示文稿
ppt.savetofile("图片背景.pptx", fileformat.auto);
}
}
给 powerpoint 幻灯片设置纹理背景
设置纹理背景与设置图片背景的操作步骤类似。不同之处在于,图片填充类型需要更改为平铺填充,并可以对纹理对齐方式进行设置。具体步骤如下:
- 创建一个 presentation 类的对象。
- 使用 presentation.loadfromfile() 方法载入演示文稿。
- 使用 presentation.getimages().append() 方法载入纹理图片。
- 使用 presentation.getslides().get() 方法获取第一张幻灯片。
- 使用 islide.getslidebackground() 方法获取幻灯片的背景。
- 使用 slidebackground.settype(backgroundtype.custom) 方法将背景类型设置为自定义,以允许自定义背景。
- 使用 slidebackground.getfill().setfilltype(fillformattype.picture) 方法将背景的填充类型设置为图片。
- 使用 picturefillformat.setfilltype(picturefilltype.tile) 方法将图片填充方式设置为平铺填充。
- 使用 picturefillformat.setalignment() 方法设置纹理图片的对齐方式。
- 使用 picturefillformat.getpicture().settransparency() 方法设置纹理背景透明度。
- 使用 picturefillformat.getpicture().setembedimage() 方法设置背景纹理。
- 使用 presentation.savetofile() 方法保存演示文稿。
- java
import com.spire.presentation.*;
import com.spire.presentation.drawing.*;
import javax.imageio.imageio;
import java.io.file;
public class texture {
public static void main(string[] args) throws exception {
//创建一个presentation类的对象
presentation ppt = new presentation();
//载入powerpoint演示文稿
ppt.loadfromfile("示例.pptx");
//载入纹理图片
iimagedata image = ppt.getimages().append(imageio.read(new file("纹理.png")));
//获取第一张幻灯片
islide slide = ppt.getslides().get(0);
//获取幻灯片背景
slidebackground background = slide.getslidebackground();
//将背景类型设置为自定义
background.settype(backgroundtype.custom);
//将背景填充类型设置为图片
background.getfill().setfilltype(fillformattype.picture);
//将图片填充类型设置为平铺
picturefillformat picturefillformat = background.getfill().getpicturefill();
picturefillformat.setfilltype(picturefilltype.tile);
//设置纹理对齐方式
picturefillformat.setalignment(rectanglealignment.top_left);
//设置纹理背景的透明度
picturefillformat.getpicture().settransparency(50);
//设置背景纹理
picturefillformat.getpicture().setembedimage(image);
//保存演示文稿
ppt.savetofile("纹理背景.pptx", fileformat.auto);
}
}
给 powerpoint 幻灯片设置图案背景
在设置图案背景时,需要设置图案类型以及图案的前景颜色和背景颜色。详细操作步骤如下:
- 创建一个 presentation 类的对象。
- 使用 presentation.loadfromfile() 方法载入演示文稿。
- 使用 presentation.getslides().get() 方法获取第一张幻灯片。
- 使用 islide.getslidebackground() 方法获取幻灯片的背景。
- 使用 slidebackground.settype(backgroundtype.custom) 方法将背景类型设置为自定义,以允许对背景进行自定义。
- 使用 slidebackground.getfill().setfilltype(fillformattype.pattern) 方法将背景的填充类型设置为图案。
- 使用 patternfillformat.setpatterntype() 方法设置图案类型。
- 使用 patternfillformat.getforegroundcolor().setcolor() 方法设置图案的前景颜色。
- 使用 patternfillformat.getbackgroundcolor().setcolor() 方法设置图案的背景颜色。
- 使用 presentation.savetofile() 方法保存演示文稿。
- java
import com.spire.presentation.*;
import com.spire.presentation.drawing.*;
import javax.imageio.imageio;
import java.awt.*;
import java.io.file;
public class pattern {
public static void main(string[] args) throws exception {
//创建一个presentation类的对象
presentation ppt = new presentation();
//载入powerpoint演示文稿
ppt.loadfromfile("示例.pptx");
//获取第一张幻灯片
islide slide = ppt.getslides().get(0);
//获取幻灯片背景
slidebackground background = slide.getslidebackground();
//将背景类型设置为自定义
background.settype(backgroundtype.custom);
//将背景填充类型设置为图案
background.getfill().setfilltype(fillformattype.pattern);
//设置图案类型
patternfillformat patternfillformat = background.getfill().getpattern();
patternfillformat.setpatterntype(patternfilltype.dotted_grid);
//设置图案的前景颜色
patternfillformat.getforegroundcolor().setcolor(new color(230, 255, 255));
//设置图案的背景颜色
patternfillformat.getbackgroundcolor().setcolor(new color(199, 213, 237));
//保存演示文稿
ppt.savetofile("图案背景.pptx", fileformat.auto);
}
}
申请临时 license
如果您希望删除结果文档中的评估消息,或者摆脱功能限制,请该email地址已收到反垃圾邮件插件保护。要显示它您需要在浏览器中启用javascript。获取有效期 30 天的临时许可证。