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

在线编辑/WebAPI

Spire.Presentation 9.3.0 已发布。该版本在原有的 Spire.Presentation 产品基础上,增加了 PresentationAI 功能。通过向 AI 大模型发送请求,可以在 AI 的帮助下实现文本润色、翻译、文本总结、文本续写、演示文稿生成以及图片生成等功能。详情请阅读以下内容。 主要 AI 功能及对应的 API: 功能 API 文本润色 public string Polish(IShape shape, string language); 翻译 public string Translate(ISlide slide, string language); 总结 public string Summarize(IShape shape,…
Spire.Presentation 9.1.5已发布。该版本支持在PPTX中嵌入字体。同时还提供了IsHidden属性用于判断Ole对象是否隐藏。此外,还修复了一系列其他已知问题,例如当系统区域语言设置为土耳其语时,加载PPTX文档时程序抛出“Microsoft PowerPoint 2007 file is corrpt.”的问题。详情请阅读以下内容。 新功能: 支持在PPTX中嵌入字体:只支持嵌入字体到PPTX格式,不支持嵌入到PDF以及PowerPoint 2003格式;嵌入中文名字体时,字体名称非中文显示。 ppt.AddEmbeddedFont(string fontpath); 提供了IsHidden属性以判断Ole对象是否隐藏。 OleObjectCollection oles = ppt.Slides[0].OleObjects; OleObject ole= oles[0]; bool result=ole.IsHidden; 问题修复: 修复了当系统区域语言设置为土耳其语时,加载PPTX文档时程序抛出“Microsoft PowerPoint 2007 file is corrpt.”异常。 修复更改图表标签位置后效果不正确的问题。 获取Spire.Presentationt 9.1.5请点击: https://www.e-iceblue.cn/Downloads/Spire-Presentation-NET.html
Spire.Presentation 9.1已发布。该版本升级了VS2019工程框架至4.6.2版本。此外,还进行了一系列其他调整,例如移除了MonoAndroid、Xamarin.iOS。详情请阅读以下内容。 功能调整: 升级VS2019工程框架升级至4.6.2版本。 移除了MonoAndroid、Xamarin.iOS。 移除了产品中的Spire.Pdf.dll 引用。 废弃了Spire.Pdf.Sercurity.PdfSecurity,并使用新接口Spire.Presentation.External.Pdf.PdfSecurity进行替换。 废弃了Spire.Pdf.PdfConformanceLevel,并使用新接口Spire.Presentation.External.pdf.PdfConformanceLevel进行替换。 presentation.SaveToPdfOption.PdfConformanceLevel = Spire.Presentation.External.Pdf.PdfConformanceLevel.Pdf_A1A; 获取Spire.Presentationt 9.1请点击: https://www.e-iceblue.cn/Downloads/Spire-Presentation-NET.html
Spire.Presentation 8.12.2 已发布。本次更新新增支持将母版页转换为图片,同时增强了 PPT 到 PDF 的转换功能。此外,改版本还修复了改变图表标签的位置后效果不正确的问题。详情请阅读以下内容。 新功能: 支持将母版页转换为图片。 Presentation ppt = new Presentation(); ppt.LoadFromFile("1.pptx"); for (int i = 0; i < ppt.Masters[0].Layouts.Count; i++) { Image image = ppt.Masters[0].Layouts[i].SaveAsImage(); String fileName = String.Format("{0}.png", i); image.Save(fileName, System.Drawing.Imaging.ImageFormat.Png);…