评论

收藏

[Java] 浅谈Java设置PPT幻灯片背景——纯色、渐变、图片背景

编程语言 编程语言 发布于:2021-09-18 15:11 | 阅读数:437 | 评论:0

这篇文章主要介绍了Java设置PPT幻灯片背景——纯色、渐变、图片背景,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
ppt幻灯片生成时,系统默认是无色背景填充,幻灯片设计需要手动设置背景效果,可设置颜色填充或者图片背景填充。本文将对此介绍具体实现方法。
jar文件导入方法(参考):
步骤1:在java程序中可新建一个文件夹命名为lib,并将下载包中的jar文件复制到新建的文件夹下。
DSC0000.png

步骤2:复制文件后,添加到引用类库:选中这个jar文件,点击鼠标右键,选择“build path” – “add to build path”。完成引用。
DSC0001.png

java示例1:设置背景颜色
1.纯色背景
import com.spire.presentation.*;import com.spire.presentation.drawing.*;public class backgroundcolor { public static void main(string[] args) throws exception {
 
 string inputfile = "sample.pptx";
 string outputfile = "output/setbackgroundcolor.pptx";
 presentation ppt = new presentation();
 ppt.loadfromfile(inputfile); 
 ppt.getslides().get(0).getslidebackground().settype(backgroundtype.custom); //设置文档的背景填充模式为纯色填充,设置颜色 
 ppt.getslides().get(0).getslidebackground().getfill().setfilltype(fillformattype.solid);
 ppt.getslides().get(0).getslidebackground().getfill().getsolidcolor().setcolor(java.awt.color.pink);
 
 ppt.savetofile(outputfile, fileformat.pptx_2010);
 ppt.dispose();
 }
}
纯色背景效果:
DSC0002.png

2.渐变背景
import java.awt.color;import com.spire.presentation.*;import com.spire.presentation.drawing.*;public class backgroundcolor { public static void main(string[] args) throws exception {
 string inputfile = "test.pptx";
 string outputfile = "output/setbackgroundcolor2.pptx";
 presentation ppt = new presentation();
 ppt.loadfromfile(inputfile);
 ppt.getslides().get(0).getslidebackground().settype(backgroundtype.custom); //设置文档的背景填充模式为渐变填充,并设置颜色 
 ppt.getslides().get(0).getslidebackground().getfill().setfilltype(fillformattype.gradient); 
 ppt.getslides().get(0).getslidebackground().getfill().getgradient().getgradientstops().append(0, color.white); 
 ppt.getslides().get(0).getslidebackground().getfill().getgradient().getgradientstops().append(1,color.green);  
 ppt.savetofile(outputfile, fileformat.pptx_2010);
 ppt.dispose();
 }
}
渐变色背景效果:
DSC0003.jpg

java示例2:图片背景
import com.spire.presentation.*;import com.spire.presentation.drawing.*;public class imagebackground { public static void main(string[] args) throws exception {
 string inputfile = "input.pptx";
 string imagefile = "1.png";
 string outputfile = "output/imgbackgroundcolor.pptx";
 presentation ppt = new presentation();
 ppt.loadfromfile(inputfile);
 ppt.getslides().get(0).getslidebackground().settype(backgroundtype.custom); //设置文档的背景填充模式为图片填充
 ppt.getslides().get(0).getslidebackground().getfill().setfilltype(fillformattype.picture); 
 ppt.getslides().get(0).getslidebackground().getfill().getpicturefill().setalignment(rectanglealignment.none);
 ppt.getslides().get(0).getslidebackground().getfill().getpicturefill().setfilltype(picturefilltype.stretch);
 ppt.getslides().get(0).getslidebackground().getfill().getpicturefill().getpicture().seturl((new java.io.file(imagefile)).getabsolutepath()); 
 ppt.savetofile(outputfile, fileformat.pptx_2010);
 ppt.dispose();
 }
}
图片背景效果:
DSC0004.jpg

以上所述是小编给大家介绍的java设置ppt幻灯片背景——纯色、渐变、图片背景详解整合,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对CodeAE代码之家网站的支持!
原文链接:https://www.imooc.com/article/282027

关注下面的标签,发现更多相似文章