New Release for Spire.Office Version 2.10.2

With the effort of our develop team, today we have released the latest hotfix for Spire.Office Platinum hotfix version 2.10.2. In this latest version, all the most recent version of our Spire.Doc, Spire.PDF, Spire.XLS, Spire.Presentation, Spire.PDFViewer, Spire.DocViewer, Spire.DataExport and Spire.Barcode are included.

Versions:

  • Spire.Doc v5.3.34,
  • Spire.PDF v3.2.71,
  • Spire.XLS v7.6.30,
  • Spire.Presentation v2.2.6,
  • Spire.PDFViewer v2.4.16,
  • Spire.DocViewer v1.8.3,
  • Spire.DataExport v3.5.2,
  • Spire.Barcode v1.2.5,

Free Trial to evaluate Spire.Office v2.10.2 here:

http://www.e-iceblue.com/Download/download-office-for-net-now.html


Details of New features and Bug solutions:

Spire.Doc

New Features:

The bold font that doesn't have bold is supported to embed into pdf when convert .docx to PDF.

Bug Solutions:

  • Fix the issue that 'Nullable object must have a value' when loading a RTF document.
  • Fix the issue that some contents in the result image lost when convert RTF to tiff.
  • Fix the issue that 'Object reference not set to an instance of an object' when saving document to stream.
  • Fix the issue that some documents can't be converted when convert .docx to PDF.
  • Fix the issue that some documents can't be converted when convert .doc to PDF.
  • Fix the issue that the symbol lost when convert .docx to PDF.
  • Fix the issue that the filled content of Form Field lost when convert .docx to PDF.
  • Fix the issue that the generated pdf is blank when convert .docx to PDF.
  • Fix the issue that the result is incorrect when convert html to RTF
  • Fix the issue that the result is incorrect when convert html to image.
  • Fix the issue that it can't extract text from some documents.
  • Fix the issue that there is exception occurs when saving the document after mail merging data.
  • Fix the issue that the TableOfContent(IDocument doc, string switches) method can't work.

Spire.XLS

New Features:

Spire.XLS supports to set the offset of filled image in chart.

Code Snippet:

Chart chart = sheet.Charts.Add();
chart.ChartArea.Fill.CustomPicture(Image.FromFile("01.png"), "None");
IChart ichart = book.Worksheets[0].Charts[0];
(ichart.ChartArea.Fill as XlsShapeFill).Tile = false;
(ichart.ChartArea.Fill as XlsShapeFill).PicStretch.Left = 10;
(ichart.ChartArea.Fill as XlsShapeFill).PicStretch.Top = 20;
(ichart.ChartArea.Fill as XlsShapeFill).PicStretch.Right = 10;
(ichart.ChartArea.Fill as XlsShapeFill).PicStretch.Bottom = 5;

Bug Solutions:

  • Fix the issue that the chart content is incorrect when convert .xls to .xlsx.
  • Fix the issue that all of Datalable fonts will change when setting individual Datalable font.
  • Fix the issue that set the size of chart legend is invalid.
  • Fix the issue that the TextRotationAngle property of Datalable doesn't work. The range of the propery is 90 to -90.

Spire.PDF

New Features:

The text in pdfgrid cell can be wrapped.

Bug Solutions:

  • Fix the issue that the result is incorrect when convert XPS to PDF.
  • Fix the issue that the generated document is invalid pdf/a1b document after merging two pdf/a1b documents.
  • Fix the issue that the generated PDFA document conformance verification failed after convert PDF to PDFA.
  • Fix the issue that the field data lost when merging two PDF documents.
  • Fix the issue that the 'Can't access a closed file' when getting the length of the Stream after loading a PDF document from FileStream.
  • Fix the issue that the text color and background color reversal when convert PDF to Image.
  • Fix the issue that 'Parameter is not valid' when convert PDF to Image.*
  • Fix the issue that the image is incorrect when convert PDF to Image.
  • Fix the issue that 'Length cannot be less than zero' when extracting the text from a PDF document.
  • Fix the issue that the text is extracted repeatedly when extracting the text from a PDF document.
  • Fix the issue that the alignment of inner grid in a grid cannot be set.