News Category

We're pleased to announce the release of Spire.PDF 10.4.7. This version supports retrieving the font formatting of found text, and adds a progress callback interface for saving documents. Moreover, the issues that occurred when converting, loading and saving PDF files 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 SPIREPDF-2422SPIREPDF-6640 Supports retrieving the font formatting of found text.Note: Only supports retrieving bold, faux bold (font style set to fill and stroke), italic, and color; does not support retrieving underline. PdfDocument pdf = new PdfDocument();…
We are excited to announce the release of Spire.Doc for Java 12.4.6. This version supports manipulating and converting Markdown documents. It also enhances the conversion from Word to PDF, HTML, and SVG. Moreover, some known issues are fixed successfully in this version, such as the issue that the rest content of the document was changed after replacing the bookmark content. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-10091 Supports loading and operating MarkDown documents, or converting word documents to MarkDown. Document doc = new Document(); //load .md…
We're pleased to announce the release of Spire.PDF for Java 10.4.4. This version supports getting the keyword font names and sizes, and also fixes the issue that the converted PDFA2B file did not pass validation. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDF-6243SPIREPDF-6638 Supports getting the keyword font names and sizes. PdfDocument pdf = new PdfDocument(); pdf.loadFromFile(inputFile); PdfPageBase page = pdf.getPages().get(0); PdfTextFinder finds = new PdfTextFinder(page); finds.getOptions().setTextFindParameter(EnumSet.of(TextFindParameter.IgnoreCase)); List<PdfTextFragment> result = finds.findAllText(page); StringBuilder str = new StringBuilder(); for (PdfTextFragment find : result) { str.append("FontName:"+find.getTextStates()[0].getFontName()); str.append("FontSize:"+find.getTextStates()[0].getFontSize()); str.append("FontFamily:"+find.getTextStates()[0].getFontFamily()); str.append("Bold:"+find.getTextStates()[0].isBold()); str.append("Italic:"+find.getTextStates()[0].isItalic());…
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…
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
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…
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…
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…
Page 1 of 60