Spire.Office 6.7.0

Spire.Office 6.7.0 is released

We are glad to announce the release of Spire.Office 6.7.0. This version brings two new features, i.e., Spire.XLS supports detecting whether a cell is set to autofit row height/column width along with getting the shapes of .xls files. Furthermore, a lot of bugs occurred when working with Word, PDF, Excel and PowerPoint documents have been fixed. More details are listed 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 v9.7.3
  • Spire.Pdf.dll v7.7.0
  • Spire.XLS.dll v11.7.0
  • Spire.Email.dll v4.6.0
  • Spire.DocViewer.Forms.dll v6.6.0
  • Spire.PdfViewer.Forms.dll v6.6.0
  • Spire.PdfViewer.Asp.dll v6.6.0
  • Spire.Presentation.dll v6.6.6
  • Spire.Spreadsheet v5.6.1
  • Spire.OfficeViewer.Forms.dll v6.7.0
  • Spire.Barcode.dll v5.7.0
  • Spire.DataExport.dll v4.1.9
  • Spire.DataExport.ResourceMgr.dll v2.1.0
  • Spire.License.dll v1.3.15
Click the link to get the version Spire.Office 6.7.0:
More information of Spire.Office new release or hotfix:

Here is a list of changes made in this release

Spire.Doc

Category ID Description
Bug SPIREDOC-2956 Fixes the issue that the pagination was incorrect after converting Word to PDF.
Bug SPIREDOC-3091
SPIREDOC-4558
SPIREDOC-5543
Fixes the issue that the table border was incorrect after converting Word to PDF.
Bug SPIREDOC-3762
SPIREDOC-5964
SPIREDOC-6031
Fixes the issue that the inserted math equation was incorrect.
Bug SPIREDOC-5050 Fixes the issue that the application threw the error "Input string was not in a correct format" when converting Html to Word.
Bug SPIREDOC-5180 Fixes the issue that there was new content in the generated file after rejecting changes.
Bug SPIREDOC-5281 Fixes the issue that the application hung when converting Html to PDF.
Bug SPIREDOC-5328
SPIREDOC-6138
Fixes the issue that the application hung when converting Word to PDF.
Bug SPIREDOC-5473 Fixes the issue that the application threw the error "ArgumentOutOfRangeException" when converting Word to PDF.
Bug SPIREDOC-5501 Fixes the issue that the VBA was missing after loading and saving the Word file.
Bug SPIREDOC-5505 Fixes the issue that it got garbled text when extracting text from a Word file.
Bug SPIREDOC-5543 Fixes the issue that the application threw the error "UnKnown form field type" when loading the file.
Bug SPIREDOC-5937 Fixes the issue that the generated file couldn't be displayed correctly in the browser after converting Word to PDF.
Bug SPIREDOC-5960 Fixes the issue that the content was incorrect after converting Word to images.
Bug SPIREDOC-6064
SPIREDOC-6452
Fixes the issue that some content was missing after converting Word to PDF.
Bug SPIREDOC-6070 Fixes the issue that the application hung when getting the page count.
Bug SPIREDOC-6079 Fixes the issue that the application threw the error "Invalid parameters" when printing the Word file.
Bug SPIREDOC-6139 Fixes the issue that the application threw the error "NullReferenceException" when converting Rtf to PDF.
Bug SPIREDOC-6146 Fixes the issue that the paragraph style was changed after merging Word files.
Bug SPIREDOC-6150 Fixes the issue that the application threw the error "NullReferenceException" when converting Word to PDF in Azure.
Bug SPIREDOC-6176 Fixes the issue that the image was enlarged after converting Word to PDF.

Spire.PDF

Category ID Description
Bug SPIREPDF-3752 Fixes the issue that the content was missing after converting PDF to images.
Bug SPIREPDF-4046
SPIREPDF-4300
Fixes the issue that the content was incorrect after converting XPS to PDF.
Bug SPIREPDF-4171 Fixes the issue that some fields did not display content when viewing after filling the form fields.
Bug SPIREPDF-4198 Optimizes the time spent on encrypting PDF files.
Bug SPIREPDF-4261 Fixes the issue that the content was missing after converting PDF to PDFA1A.
Bug SPIREPDF-4291 Fixes the issue that the background color of the Tiff changed after inserting it into PDF.
Bug SPIREPDF-4307 Fixes the issue that the application threw the error "NullReferenceException" when extracting PDF attachments.
Bug SPIREPDF-4325 Fixes the issue that the text of the inserted barcode was incomplete.
Bug SPIREPDF-4326 Fixes the issue that the printout was incorrect after printing the PDF.
Bug SPIREPDF-4331 Fixes the issue that the content was incorrect after converting PDF to images.
Bug SPIREPDF-4338 Fixes the issue that the PDF version was incorrect after converting PDF to PDFA1B.
Bug SPIREPDF-4344 Fixes the issue that the inserted sub-bookmark could not be deleted.
Bug SPIREPDF-4351 Fixes the issue that the font size of the drawn html string was incorrect.
Bug SPIREPDF-4352 Fixes the issue that the content was incorrect after converting PDF to PDFA1B.
Bug SPIREPDF-4360 Fixes the issue that there was extra text after merging PDF files.

Spire.Presentation

Category ID Description
Bug SPIREPPT-1574
SPIREPPT-1594
Fixes the issue that the icon of the ole object was changed after opening the ole object.
Bug SPIREPPT-1578 Fixes the issue that the application threw the error "System.IndexOutOfRangeException" when loading PPT files.
Bug SPIREPPT-1589 Fixes the issue that the application kept crashing in a loop while copying shapes.
Bug SPIREPPT-1595 Fixes the issue that the video cover in the generated PDF was missing after converting PPTX files to PDF
Bug SPIREPPT-1603 Fixes the issue that the some slides of the ole PPT was missing after inserting a PPT file to another as an ole object

Spire.XLS

Category ID Description
New feature SPIREXLS-3194 Supports getting whether a cell is set to auto fit row height/column width.
bool isRowAutofit = workbook.Worksheets[0].GetRowIsAutoFit(rowIndex);
bool isColAutofit = workbook.Worksheets[0].GetColumnIsAutoFit(columnIndex);
New feature SPIREXLS-3286 Supports getting the shapes of .xls file.
Workbook workbook = new Workbook();
workbook.LoadFromFile("Template.xls");
Worksheet sheet = workbook.Worksheets[0];
PrstGeomShapeCollection prstGeomShapes = sheet.PrstGeomShapes;
Bug SPIREXLS-3233
SPIREXLS-3291
Fixes the issue that the content was incorrect after converting Excel to PDF.
Bug SPIREXLS-3282 Fixes the issue that the Power Query was missing after loading and saving the file.
Bug SPIREXLS-3283 Fixes the issue that it didn't get the correct cell format.
Bug SPIREXLS-3295 Fixes the issue that the links were not rendered correctly after converting Excel to PDF.

Spire.Spreadsheet

Category ID Description
Bug SPREADSHEET-175 Fixes the issue that the text was incorrect when viewing excel files.
Bug SPREADSHEET-186
SPREADSHEET-187
Fixes the issue that text and images were incorrect when viewing excel files.