gpt4 book ai didi

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

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 41 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章浅谈Java设置PPT幻灯片背景——纯色、渐变、图片背景由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

ppt幻灯片生成时,系统默认是无色背景填充,幻灯片设计需要手动设置背景效果,可设置颜色填充或者图片背景填充。本文将对此介绍具体实现方法.

jar文件导入方法(参考):

步骤1:在java程序中可新建一个文件夹命名为lib,并将下载包中的jar文件复制到新建的文件夹下.

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

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

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

java示例1:设置背景颜色 。

1.纯色背景 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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();
  }
}

纯色背景效果:

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

2.渐变背景 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
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();
  }
}

渐变色背景效果:

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

java示例2:图片背景 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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();
  }
}

图片背景效果:

  。

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

  。

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

原文链接:https://www.imooc.com/article/282027 。

最后此篇关于浅谈Java设置PPT幻灯片背景——纯色、渐变、图片背景的文章就讲到这里了,如果你想了解更多关于浅谈Java设置PPT幻灯片背景——纯色、渐变、图片背景的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

41 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com