Spire.Office 9.6.0 is released
2024-06-27 06:55:58
We're pleased to announce the release of Spire.Office 9.6.0. This version adds many new features, for example, Spire.Doc supports AI features and saving the XML of the document's default font replacement rules; Spire.XLS supports converting Excel to Markdown format, Spire.PDF supports converting PDF to Markdown format. Meanwhile, a series of issues occurred when converting, manipulating and printing Word, Excel and PDF files have been successfully fixed. More details are given below. In this version, the most recent versions of Spire.Doc, Spire.PDF, Spire.XLS, Spire.Presentation, Spire.Email, Spire.DocViewer, Spire.PDFViewer, Spire.Spreadsheet, Spire.OfficeViewer, Spire.DataExport, Spire.Barcode are included. DLL Versions: Spire.Doc.dll v12.6.10.0 Spire.Pdf.dll v10.6.25.0 Spire.XLS.dll v14.6.6.0…
Spire.Office for Java 9.6.0 is released
2024-06-26 09:36:23
We are excited to announce the release of Spire.Office for Java 9.6.0. In this version, Spire.Doc for Java supports displaying a prompt message when a corresponding font is not found during conversion; Spire.Barcode for Java supports obtaining barcode information; Spire.PDF for Java enhances the conversion from PDF to OFD, Word, SVG and images. Besides, a lot of known issues are fixed successfully in this version. More details are listed below. Click the link to download Spire.Office for Java 9.6.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-10465 Supports…
Spire.Doc for Python 12.6.0 supports converting Word to Markdown, or Markdown to Word/PDF
2024-06-26 09:02:32
We're pleased to announce the release of Spire.Doc for Python 12.6.0. This version supports loading, saving and converting Markdown documents, such as converting Word to Markdown,or Markdown to Word/PDF. In addition, it also fixes some issues that occurred when converting Word to PDF, Html to Word. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-10556 Supports loading, saving and converting Markdown documents. document= Document() #load .md file document.LoadFromFile("input.md") #save to .md file document.SaveToFile("output.md", FileFormat.Markdown) #save to .docx file document.SaveToFile("output.docx", FileFormat.Docx) #save to .doc file document.SaveToFile("output.doc", FileFormat.Doc) #save to…
Spire.PDF 10.6.25 enhances the conversion from PDF to OFD and XPS to PDF
2024-06-25 09:43:23
We are glad to announce the release of Spire.PDF 10.6.25. This version enhances the conversion from PDF to OFD and PDFA1A as well as XPS to PDF. Besides, some known issues are fixed successfully in this version, such as the issue that the signature validation was incorrect. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPDF-6721 Fixes the issue that the results of extracting images from PDF were incorrect. Bug SPIREPDF-6775 Fixes the issue that the effect of setting "PdfButtonWidgetFieldWidget.SetButtonImage()" was incorrect. Bug SPIREPDF-6791 Fixes the issue that the…
Spire.XLS 14.6.6 supports converting Excel to Markdown format
2024-06-25 08:11:20
We're pleased to announce the release of Spire.XLS 14.6.6. This version supports converting Excel to Markdown format, and fixes some issues that occurred when converting Excel to image/HTML, and adding filter to Excel PivotTable. More details are shown below. Here is a list of changes made in this release Category ID Description New feature - Supports converting Excel to Markdown format. Workbook workbook = new Workbook(); workbook.LoadFromFile("input.xlsx"); workbook.SaveToFile("output.md",FileFormat.Markdown); Bug SPIREXLS-5191 Fixes the issue that the application threw "ArgumentOutOfRangeException" when setting "horizontal" and "vertical" type borders. Bug SPIREXLS-5243 Fixes the issue that the effect was incorrect when calling "Worksheet.Activate()" method. Bug…
Spire.Doc 12.6.10 supports loading customized font replacement rules in XML format for conversion
2024-06-24 07:38:38
We are excited to announce the release of Spire.Doc 12.6.10. This version supports loading custom font replacement rules in XML format for conversion and saving the XML of the document's default font replacement rules. Besides, it enhances the conversion from Word to PDF and HTML to Word. More details are listed below. Here is a list of changes made in this release Category ID Description New feature - Adds the Document.SaveFontFallbackRuleSettings() method to save the XML of the document's default font replacement rules. Document document = new Document(); document.LoadFromFile(inputFile); document.SaveFontFallbackRuleSettings("FontReplacementRuleSettings.xml"); New feature - Adds the Document.LoadFontFallbackRuleSettings() method to load custom…
Spire.PDF for Java 10.6.2 enhances the conversion from PDF to OFD and images
2024-06-21 07:38:25
We are delighted to announce the release of Spire.PDF for Java 10.6.2. This version enhances the conversion from PDF to OFD and images and SVG to PDF. Besides, some known issues are fixed successfully in this version, such as the issue that an error "StringIndexOutOfBoundsException" was thrown when extracting PDF tables. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPDF-6767 Fixes the issue that an error "StringIndexOutOfBoundsException" was thrown when extracting PDF tables. Bug SPIREPDF-6781 Fixes the issue that text was overlapped after converting PDF to images. Bug SPIREPDF-6796…
Spire.Doc for Java 12.6.2 supports displaying a prompt message when a corresponding font is not found during conversion
2024-06-18 09:43:27
We're pleased to announce the release of Spire.Doc for Java 12.6.2. This version supports displaying a prompt message when a corresponding font is not found during Word conversion. Meanwhile, it also fixes some issues that occurred when converting Word to PDF, and HTML to Word. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-10465 Supports displaying a prompt message when a corresponding font is not found during Word conversion. Document doc = ConvertUtil.GetNewEngineDocument(); doc.loadFromFile(input); HandleDocumentSubstitutionWarnings substitutionWarningHandler = new HandleDocumentSubstitutionWarnings(); doc.setWarningCallback(substitutionWarningHandler); doc.saveToFile(output_1); StringBuilder sb = new StringBuilder(); Iterator iterator…