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

在线编辑/WebAPI

Spire.Doc for Java 13.11.2 现已正式发布。该版本支持在 Word 文档中创建组合图表,此外还修复了一些在转换 Word 到 PDF、Markdown 到 Word,和加载、保存 Word 文档时出现的问题。详情如下。 新功能: 支持在 Word 文档中创建组合图表。 Document doc = new Document(); Paragraph paragraph = doc.addSection().addParagraph(); Chart chart = paragraph.appendChart(ChartType.Column, 450, 300).getChart(); chart.changeSeriesType("Series 3", ChartSeriesType.Line,…
Spire.PDF 11.11.1 现已正式发布。该版本支持在 NetStandard DLL 中启用打印日志功能。同时,移除了部分依赖项,并修复了多个在 PDF 转换、字体替换、验证及打印过程中出现的问题,进一步提升了产品的稳定性和性能。更多详情如下。 调整: 移除了 NetCore、NetStandard 平台中 System.Security.Cryptography.Pkcs、System.Security.Permissions、System.Security.Cryptography.Xml 的依赖。 新功能: NetStandard DLL 支持设置并启用打印日志功能。 PdfDocument doc = new PdfDocument(); doc.LoadFromFile("in.pdf"); doc.PrintSettings.PrintLogger= new DefaultPrintLogger("log.txt"); doc.PrintSettings.PaperSize =PdfPaperSize.A4; doc.Print(); 问题修复: 修复了 PDF 转图片时背景色丢失的问题。 修复了 PDF…
我们很高兴宣布发布Spire.Office 10.10.0。在此版本中,Spire.Doc支持从Word文件中提取页面到单独文件;Spire.XLS支持读取Office缓存云字体;Spire.Presentation支持设置音频淡入淡出时长;Spire.PDF支持验证时间戳服务URL。同时,本次更新修复了一系列已知问题。更多细节如下。 该版本涵盖了最新版的 Spire.Doc、Spire.PDF、Spire.XLS、Spire.Presentation、Spire.Barcode、Spire.Email、Spire.DocViewer、Spire.PDFViewer、Spire.OfficeViewer 和 Spire.DataExport。 版本信息如下: Spire.Doc.dll v13.10.3 Spire.Pdf.dll v11.10.4 Spire.XLS.dll v15.10.3 Spire.Presentation.dll v10.10.7 Spire.Barcode.dll v7.4.1 Spire.Email.dll v6.6.3 Spire.DocViewer.Forms.dll v8.9.4 Spire.PdfViewer.Asp.dll v8.2.6 Spire.PdfViewer.Forms.dll v8.2.6 Spire.Spreadsheet.dll v7.5.2 Spire.OfficeViewer.Forms.dll v8.8.0 Spire.DataExport.dll 4.9.0 Spire.DataExport.ResourceMgr.dll v2.1.0 获取Spire.Office 10.10.0,请点击: https://www.e-iceblue.cn/Downloads/Spire-Office-NET.html…
Spire.PDFViewer 8.2.6 现已正式发布。该版本在Form、WPF和MAUI新增了“查找上一个”和“查找下一个”功能。同时,pdfDocumentViewer1.SearchText() 方法已被声明为旧方法,本版本中使用 pdfDocumentViewer1.Find() 方法替代。详情如下。 新功能: 在Form、WPF和MAUI新增“查找上一个”和“查找下一个”功能。同时 pdfDocumentViewer1.SearchText() 方法已弃用,使用 pdfDocumentViewer1.Find() 替代。 private void Form1_Load(object sender, EventArgs e) { string pdfDoc = @"test.pdf"; if (File.Exists(pdfDoc)) { this.pdfDocumentViewer1.LoadFromFile(pdfDoc); this.pdfDocumentViewer1.Find("FindedText", Color.Empty); } } private void before_Click(object sender, EventArgs…