Spire.Doc for Java 13.11.2 supports creating combination charts in Word
2025-11-14 09:29:44
We're pleased to announce the release of Spire.Doc for Java 13.11.2. This version supports creating combination charts in Word, and also fixes some issues that occurred when converting Word to PDF, Markdown to Word, and loading, saving Word documents. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-10972 Added support for creating combination charts in Word documents. Document doc = new Document(); Paragraph paragraph = doc.addSection().addParagraph(); Chart chart = paragraph.appendChart(ChartType.Column, 450, 300).getChart(); chart.changeSeriesType("Series 3", ChartSeriesType.Line, true); System.out.println(chart.getSeries().get(2).getChartType()); doc.saveToFile("ComboChart.docx"); Bug SPIREDOC-11412 SPIREDOC-11607 Fixed the issue that incorrect revisions were…
Spire.PDF 11.11.1 adds support for enabling print logging in NETStandard DLL
2025-11-06 09:54:11
We're pleased to announce the release of Spire.PDF 11.11.1. This version adds support for enabling print logging in the NETStandard DLL. Meanwhile, it removes certain dependencies in NetCore and NetStandard platforms and includes several important bug fixes and optimizations to enhance performance and stability. More details are listed below. Here is a list of changes made in this release Category ID Description Adjustment — Removed dependencies on System.Security.Cryptography.Pkcs, System.Security.Permissions, and System.Security.Cryptography.Xml in NetCore and NetStandard platforms. New feature — Added support for enabling print logging in NETStandard DLL. PdfDocument doc = new PdfDocument(); doc.LoadFromFile("in.pdf"); doc.PrintSettings.PrintLogger= new DefaultPrintLogger("log.txt"); doc.PrintSettings.PaperSize =PdfPaperSize.A4; doc.Print();…
Spire Office 10.10.0 is released
2025-10-31 10:43:55
We’re pleased to announce the release of Spire.Office 10.10.0. In this version, Spire.Doc supports extracting pages from a Word file to a separate file; Spire.XLS supports reading Office cached cloud fonts, Spire.Presentation supports setting fade-in or fade-out duration of audio; Spire.PDF supports validating the timestamp service URL. Meanwhile, a series of known issues are fixed in this update. More details are given below. In this version, the most recent versions of Spire.Doc, Spire.PDF, Spire.XLS, Spire.Presentation, Spire.Barcode, Spire.DocViewer, and Spire.PDFViewer are included. DLL Versions: 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…
Spire.Office for Java 10.10.0 is released
2025-10-31 09:14:31
We're pleased to announce the release of Spire.Office for Java 10.10.0. In this version, the Spire.Doc for Java supports retrieving style change revisions. Spire.PDF for Java supports setting column width for PdfTable. Spire.Presentation for Java supports converting Markdown to PPTX. In addition, many known issues that occurred when converting and processing Word/ Excel/ PDF/PowerPoint files have been successfully fixed. More details are listed below. Click the link to download Spire.Office for Java 10.10.0: https://www.e-iceblue.com/Download/office-for-java.html Here is a list of changes made in this release Spire.Doc for Java Category ID Description New feature SPIREDOC-9691 SPIREDOC-8447 Added support for accepting or rejecting…
Spire.PDFViewer 8.2.6 adds support for “Find Previous” and “Find Next” functions
2025-10-31 08:26:33
We’re pleased to announce the release of Spire.PDFViewer 8.2.6. This version adds support for the “Find Previous” and “Find Next” functions in Form, WPF, and MAUI. In addition, the method pdfDocumentViewer1.SearchText() has been deprecated and replaced with pdfDocumentViewer1.Find(). More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDFVIEWER-616 Added support for “Find Previous” and “Find Next” functionsin Form, WPF, and MAUI. The pdfDocumentViewer1.SearchText() method has been deprecated and replaced with 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); } }…
Spire.Presentation 10.10.7 optimizes saving time when creating PowerPoint using templates
2025-10-29 09:15:59
We're pleased to announce the release of Spire.Presentation 10.10.7. This version optimizes saving time when creating PowerPoint presentations using templates. Meanwhile, it adds support for setting table transparency and includes adjustments and several bug fixes that improve the overall performance and stability of the product. More details are listed below. Here is a list of changes made in this release Category ID Description Adjustment — Adjusted the usage of the AddDigitalSignature method. Presentation ppt = new Presentation(); ppt.LoadFromFile("in.pptx"); //Add a digital signature,The parameters: string certificatePath, string certificatePassword, string comments, DateTime signTime ppt.AddDigitalSignature("test.pfx", "e-iceblue", "111", DateTime.Now); ppt.SaveToFile("result.pptx", Spire.Presentation.FileFormat.Pptx2016); ppt.Dispose(); New feature…
Spire.PDF for Java 11.10.3 supports setting column width for PdfTable.
2025-10-29 08:45:03
We are excited to announce the release of Spire.PDF for Java 11.10.3. This version introduces a new feature that allows users to set the column width for PdfTable. Details are listed below. Here is a list of changes made in this release Category ID Description New feature - Adds support for setting column width for PdfTable. // Create PDF document PdfDocument doc = new PdfDocument(); // Set margins PdfUnitConvertor unitCvtr = new PdfUnitConvertor(); PdfMargins margin = new PdfMargins(); margin.setTop(unitCvtr.convertUnits(2.54f, PdfGraphicsUnit.Centimeter, PdfGraphicsUnit.Point)); margin.setBottom(margin.getTop()); margin.setLeft(unitCvtr.convertUnits(3.17f, PdfGraphicsUnit.Centimeter, PdfGraphicsUnit.Point)); margin.setRight(margin.getLeft()); // Add a page PdfPageBase page = doc.getPages().add(PdfPageSize.A4, margin); // Add table PdfTable table…
Spire.Doc for Java 13.10.6 supports retrieving style change revisions
2025-10-28 09:50:42
We're pleased to announce the release of Spire.Doc for Java 13.10.6. This version supports retrieving style change revisions, accepting or rejecting partial revisions, and tracking revision records for styles. Meanwhile, some issues that occurred when converting Word to PDF, HTML to Word, loading and saving Word documents have also been successfully fixed. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-9691 SPIREDOC-8447 Added support for accepting or rejecting partial revisions. Document document = new Document(); document.loadFromFile(inputFile); RevisionInfoCollection revisionInfoCollection= document.getRevisionInfos(); for (int i = 0; i New feature SPIREDOC-10632…
