Spire.Presentation for Java 9.4.5 fixes an issue
2024-04-15 09:48:16
We are delighted to announce the release of Spire.Presentation for Java 9.4.5. This version fixes the issue that the CPU usage reached 100 percent and memory overflowed after the end of the task in the thread pool of converting a large number of documents under multithreading. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPPT-2450 Fixes the issue that the CPU usage reached 100 percent and memory overflowed after the end of the task in the thread pool of converting a large number of documents under multithreading. Click the…
Spire.XLS for Java 14.4.1 enhances the conversion from Excel to OFD
2024-04-12 09:21:20
We're pleased to announce the release of Spire.XLS for Java 14.4.1. This version fixes the issues that the application threw an exception when converting Excel to OFD. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPDF-5187 Fixes the issue that the application threw the "java.lang.IllegalArgumentException" exception when converting an Excel document to an OFD document. Click the link to download Spire.XLS for Java 14.4.1: https://www.e-iceblue.com/Download/xls-for-java.html
Spire.PDF 10.4.2 enhances the conversion from PDF to OFD and OFD to PDF
2024-04-12 05:46:32
We are delighted to announce the release of Spire.PDF 10.4.2. This version enhances the conversion from PDF to OFD and OFD to PDF. Moreover, some known issues are fixed successfully in this version, such as the issue that text in vertically aligned format could not be highlighted. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPDF-3181 Fixes the issue that text in vertically aligned format could not be highlighted. Bug SPIREPDF-6598 Fixes the issue that the program did not report an error when using the PdfDocument.LoadFromFile(string filename) method to…
Spire.PDF 10.3.16 supports getting the font and font size of the found text
2024-04-02 06:55:34
We're pleased to announce the release of Spire.PDF 10.3.16. This version supports getting the font and font size of the found text, optimizes the effect of compressing PDFs, and also fixes some issues occurred when converting XPS to PDF. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDF-5779 Supports getting the font and font size of the found text. PdfDocument pdf = new PdfDocument(); pdf.LoadFromFile("test.pdf"); PdfTextFindOptions findOptions = new PdfTextFindOptions(); findOptions.Parameter = TextFindParameter.IgnoreCase; foreach (PdfPageBase page in pdf.Pages) { PdfTextFinder finder = new PdfTextFinder(page); finder.Options = findOptions; List…
Spire.Doc 12.3.12 supports working with Markdown documents
2024-03-28 06:22:19
We are excited to announce the release of Spire.Doc 12.3.12. This version supports loading and manipulating Markdown documents and converting Word documents to the Markdown format. Besides, some known issues are fixed in this version, such as the issue that the bookmarks were incorrect when converting Word to PDF. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-10091SPIREDOC-10217 Supports loading and manipulating Markdown documents or converting Word documents to Markdown. Document doc = new Document(); //load .md file doc.LoadFromFile("input.md"); //save to .md file //doc.SaveToFile("output.md", Spire.Doc.FileFormat.Markdown); //save to .docx…
Spire.Office for Java 9.3.1 is released
2024-03-28 02:36:10
We're pleased to announce the release of Spire.Office for Java 9.3.1. This version contains some fantastic features, such as Spire.PDF for Java adds the PdfTextReplacer class to replace PDF text and supports adding InkAnnotation to PDF; Spire.XLS for Java supports AI features; Spire.Presentation for Java supports adding math equation in paragraphs and getting the display color of a shape. In addition, many known issues are fixed in this version. More details are listed below. Click the link to download Spire.Office for Java 9.3.1: 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…
Spire.PDF for Java 10.3.4 supports adding InkAnnotation to PDF
2024-03-27 07:00:51
We are delighted to announce the release of Spire.PDF for Java 10.3.4. This version adds the PdfTextReplacer class to replace PDF text and supports adding InkAnnotation to PDF. Besides, it also optimizes the PDF digital signature time to match the system local time. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDF-4354 Adds the PdfTextReplacer class to replace PDF text. PdfDocument doc = new PdfDocument(); doc.loadFromFile("Input.pdf"); PdfPageBase page = doc.getPages().get(0); PdfTextReplacer textReplacer = new PdfTextReplacer(page); textReplacer.replaceAllText("old", "NEW"); doc.saveToFile("output.pdf"); doc.dispose(); New feature SPIREPDF-6591 Supports adding InkAnnotation to PDF. PdfDocument…
Spire.XLS for Java 14.3.2 optimizes the memory usage for parsing Excel documents
2024-03-27 03:32:06
We are happy to announce the release of Spire.XLS for Java 14.3.2. This version optimizes the memory usage for parsing Excel files. Besides, some known issues are fixed in this version, such as the issue that shapes were lost after copying a worksheet table. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREXLS-5096 Optimize the issue that the memory consumption is high when parsing Excel documents. Bug SPIREXLS-5136 Fix the issue that it reported an error when opening an Excel document after loading and saving it directly. Bug SPIREXLS-5138…