Spire.Presentation | 新闻
|
028-81705109
|
|
微信扫一扫
|

在线编辑/WebAPI

Spire.Presentation 5.8.1已发布。该版本支持添加节、设置SmartArt节点轮廓线条样式和节点间的连接线条样式,并修复了将PPT转为PDF时出现的问题。新功能及问题修复详情如下。 新功能: 支持添加节 Presentation presentation = new Presentation(); presentation.LoadFromFile(pptfile); ISlide slide = presentation.Slides[0]; //添加节 presentation.SectionList.Add("section1", slide); //获取节 Section section; String name; for (int i = 0; i < presentation.SectionList.Count; i++) { section = presentation.SectionList[i]; name…
Spire.Presentation for Java 3.7.9于今日发布。该版本具备了一些新功能,比如,它支持获取PPT的节。除此之外,它也解决了一些在PPT转PDF/Image,加载及操作PPT文档时遇到的问题。详情见下文。 新功能: 支持获取PPT节。 SectionList list= presentation.getSectionList(); list.get(0).getName(); 新增getLastVievedSlide方法支持获取最近观看的幻灯片的超链接。 IAutoShape autoShape=presentation.getSlides().get(0).getShapes().appendShape(ShapeType.RECTANGLE,new Rectangle2D.Double(100,100,100,100)); autoShape.setClick(ClickHyperlink.getLastVievedSlide()); 问题修复: 修复了获取动画持续时间返回NaN的问题。 修复了转换PPT到图片,内容格式错误的问题。 修复了设置图表边框失败的问题。 修复了转换PPT到PDF,内容格式错误的问题。 修复了加载PPT文档程序抛"ClassCastException" 的问题。 获取Spire.Presentation for Java 3.7.9,请点击: https://www.e-iceblue.cn/Downloads/Spire-Presentation-JAVA.html
Spire.Presentation 5.7.2已发布。该版本主要修复了转PPT到PDF、加载PPTX文档和设置动画持续时间时出现的问题。问题修复详情如下。 问题修复: 修复了转换PPT到PDF线条位置不正确的问题 修复了加载一个PPTX文档抛异常System.NullReferenceException 修复了设置动画持续时间不生效的问题 获取Spire.Presentation 5.7.2,请点击: https://www.e-iceblue.cn/Downloads/Spire-Presentation-NET.html
Spire.Presentation for Java 3.7.4已于今日发布。该版本支持获取形状在幻灯片母版的版式中的原型,同时还支持获取当前的主题颜色集合。除此之外,一些在转换PPT到PDF以及获取文本的真实主题颜色时出现的问题也得以成功解决。详情见下文。 新功能: 支持获取形状在幻灯片母版的版式中的原型。 Shape layoutPrototype = shape.getLayoutPrototype(); 支持获取当前的主题颜色集合。 StringBuilder sb = new StringBuilder(); IMasterSlide masterSlide = presentation.getMasters().get(0); for (SchemeColor schemeColor : masterSlide.getColorMap().keySet()) { masterSlide.getColorMap().get(schemeColor); String content = "key : " +schemeColor +"\tvalue :…