We are glad to announce the release of Spire.PDF 7.11.1. This version supports converting PDF to linearized PDF. Meanwhile, it enhances the conversion from PDF to images and some known bugs have been successfully fixed. Here is a list of changes made in this release Category ID Description New feature - Supports converting PDF to linearized PDF. PdfToLinearizedPdfConverter converter = new PdfToLinearizedPdfConverter("inputFile"); converter.ToLinearizedPdf("outputFile"); Bug SPIREPDF-2356 Fixes the issue that the content was incorrect after converting PDF to Word. Bug SPIREPDF-4311 Optimizes the time for converting PDF to images. Bug SPIREPDF-4587 Fixes the issue that an error prompted when opening the…
We are glad to announce the release of Spire.XLS for Java 4.11.0. This version supports to get the created time and the last saved time of Excel file. Meanwhile, it enhances the conversion from Excel to PDF and fixes some known issues. Here is a list of changes made in this release Category ID Description New feature SPIREXLS-3488 Supports to get the created time and the last saved time of Excel file. BuiltInDocumentProperties properties1 = workbook.getDocumentProperties(); properties1.getCreatedTime(); properties1.getLastSaveTime(); Bug SPIREXLS-3427 Fixes the issue that the conditional formats did not take effect when converting an Excel file to PDF Bug SPIREXLS-3444…
We are pleased to announce the release of Spire.PDF for Java 4.11.1. This version supports converting PDF to images with transparent background, and enhances the conversion from PDF to Word. In addition, it fixes the issue that setting cell newlines did not work. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDF-4734 Supports converting PDF to images with transparent background. PdfDocument doc = new PdfDocument(); doc.loadFromFile("input.pdf"); doc.getConvertOptions().setPdfToImageOptions(0); BufferedImage image = doc.saveAsImage(0); Bug SPIREPDF-3907 Fixes the issue that the content was truncated when converting PDF to Word Bug SPIREPDF-4113…
We are excited to announce the release of Spire.Office 6.10.3. This version brings some new features, for example, Spire.XLS supports multiple new charts such as Waterfall, Pareto and Histogram; Spire.PDF supports setting document properties when converting PDF to Doc/Docx; Spire.Presentation supports getting the target slide of a hyperlink. Meanwhile, a lot of bugs have been successfully fixed. More details are listed as follows. 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 v9.10.9 Spire.Pdf.dll v7.10.4 Spire.XLS.dll v11.10.5 Spire.Email.dll v4.7.0 Spire.DocViewer.Forms.dll v6.8.0 Spire.PdfViewer.Forms.dll v6.9.1 Spire.PdfViewer.Asp.dll v6.9.1…
We are pleased to announce the release of Spire.Spreadsheet 5.10.0. This version fixes the issue that the content in the file was cut when viewing Excel file. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPREADSHEET-188 Fixes the issue that the content in the file was cut when viewing Excel file Click the link to download Spire.Spreadsheet 5.10.0: https://www.e-iceblue.com/Download/download-Spreadsheet-for-net-now.html More information of Spire.Spreadsheet new release or hotfix: https://www.e-iceblue.com/forum/spire-spreadsheet-new-release-or-hotfix-t6100.html
We are happy to announce the release of Spire.XLS 11.10.5. This version supports some new charts, such as Waterfall, Pareto and Histogram. More details are listed below. Here is a list of changes made in this release Category ID Description New feature - Supports Waterfall, Pareto, Histogram, BoxAndWhisker, TreeMap, SunBurst and Funnel charts. Workbook workbook = new Workbook(); workbook.LoadFromFile("waterfall_sample.xlsx"); var sheet = workbook.Worksheets[0]; var officeChart = sheet.Charts.Add(); //Set chart type as waterfall officeChart.ChartType = ExcelChartType.WaterFall; //Set data range to the chart from the worksheet officeChart.DataRange = sheet["A2:B8"]; //Data point settings as total in chart officeChart.Series[0].DataPoints[3].SetAsTotal = true; officeChart.Series[0].DataPoints[6].SetAsTotal = true;…
We are glad to announce the release of Spire.Presentation 6.10.2. This version supports getting the target slide of a hyperlink. In addition, it enhances the conversion from shape to image and fixes some known issues. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPPT-1698 Supports getting the target slide of a hyperlink. Presentation ppt = new Presentation(); ppt.LoadFromFile(inputFile); IAutoShape shape = ppt.Slides[1].Shapes[0] as IAutoShape; if (shape.Click.ActionType == HyperlinkActionType.GotoSlide) { ISlide targetSlide = shape.Click.TargetSlide; Console.WriteLine("index = " + targetSlide.SlideNumber); } Bug SPIREPPT-1684 Fixes the issue that the OLE object…
We are happy to announce the release of Spire.Doc 9.10.9. This version enhances the conversion from Word to PDF and also fixes the issues occurred in the course of loading HTML and Word files. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREDOC-5938 Fixes the issue that it didn't find all matches when using regular expression to find text. Bug SPIREDOC-6435 Fixes the issue that the application threw the error "ArgumentOutOfRangeException" when loading an HTML file. Bug SPIREDOC-6545SPIREDOC-6785 Fixes the issue that there were extra blank pages after converting…