新闻中心 | 新版本发布、优惠信息、促销活动和产品资讯等
|
028-81705109
|
|
微信扫一扫
|

在线编辑/WebAPI

Spire.Office 9.3.1 已发布。在该版本中,Spire.Doc 支持解析 Word 文档中的 GIF 格式内容;Spire.XLS 支持数据透视表分组功能;Spire.Presentation 新增 AI 功能并支持设置 PPTX 转 SVG 的转换选项;Spire.DocViewer 支持 WPF 和 MAUI 平台;Spire.PDFViewer 支持获取鼠标点击时相对于 PDF 页面内容的坐标。此外,许多已知问题也在该版本中成功修复。详情请阅读以下内容。 该版本涵盖了最新版的 Spire.Doc,Spire.PDF,Spire.XLS,Spire.Email,Spire.DocViewer,Spire.PDFViewer,Spire.Presentation,Spire.Spreadsheet,Spire.OfficeViewer,Spire.Barcode,Spire.DataExport。 版本信息如下: Spire.Doc.dll v12.2.10 Spire.Pdf.dll v10.3.7 Spire.XLS.dll v14.3.3 Spire.Presentation.dll v9.3.4 Spire.Barcode.dll…
Spire.Presentation for Java 9.3.1 已发布。该版本支持在段落中添加数学公式以及获取形状的显示颜色。此外,合并文档时程序抛“DocumentEditException”异常的问题也已成功修复。详情请查看以下内容。 新功能: 支持在段落中添加数学公式。 Presentation ppt = new Presentation(); String latexMathCode="x^{2}+\\sqrt{x^{2}+1=2}"; IAutoShape shape=ppt.getSlides().get(0).getShapes().appendShape(ShapeType.RECTANGLE,new Rectangle2D.Float(30,100,400,200)); shape.getTextFrame().getParagraphs().clear(); ParagraphEx p=new ParagraphEx(); shape.getTextFrame().getParagraphs().append(p); PortionEx portionEx=new PortionEx("Test"); p.getTextRanges().append(portionEx); p.appendFromLatexMathCode(latexMathCode); PortionEx portionEx2=new PortionEx("Hello"); p.getTextRanges().append(portionEx2); ppt.saveToFile(outputFile, FileFormat.AUTO); 支持了获取形状(shape)的显示颜色。 Presentation ppt…
Spire.Presentation 9.3.4 已发布。该版本新增 SaveToSvgOption 用于设置 PPTX 转 Svg 的转换选项,同时也支持获取 PPT 默认字体样式。除此之外,一些在转换 PPTX 到 PDF/SVG 以及加载、保存文档时出现的问题也得以成功解决。详情见下文。 新功能: 支持获取 PPT 默认字体样式。 Presentation presentation = new Presentation(); presentation.LoadFromFile(inputFile); IAutoShape shape = presentation.Slides[0].Shapes[0] as IAutoShape; DefaultTextRangeProperties format = shape.TextFrame.Paragraphs[0].TextRanges[0].DisPlayFormat; File.AppendAllText(outputFile,…
Spire.Doc for Python 12.3.2 已发布。该版本新增支持获取修订的功能。另外还修复了使用 FindString() 未匹配到关键词时,程序抛出 TypeError 错误问题。详情请阅读以下内容。 新功能: 支持获取修订的功能。 doc1 = Document(inputFile_1) doc2 = Document(inputFile_2) doc1.Compare(doc2, "Author") revisions = DifferRevisions(doc1) content = "" m = 0 n = 0 insertRevisionList = revisions.InsertRevisions deleteRevisionList =…