Spire.XLS 11.8.0

Spire.XLS 11.8.0 supports converting SmartArt/shapes to images

We are happy to announce the release of Spire.XLS 11.8.0. This version supports converting SmartArt/shapes to images as well as supports loading and saving files in et/ett formats. In addition, it also enhances the conversions from Excel/HTML to PDF. More details are listed below.

Here is a list of changes made in this release

Category ID Description
New feature SPIREXLS-3308 SPIREXLS-3309 Supports converting SmartArt/shapes to images.
Workbook workbook = new Workbook();
workbook.LoadFromFile("Sample.xlsx");
Worksheet sheet = workbook.Worksheets[0];
SaveShapeTypeOption shapelist = new SaveShapeTypeOption();
List images = sheet.SaveShapesToImage(shapelist);
int index = 0;
foreach (System.Drawing.Image img in images)
{
    img.Save("toImage" + index + ".Png", ImageFormat.Png);
    index++;
}
New feature SPIREXLS-3340 Supports loading and saving files in et/ett formats.
Workbook wb = new Workbook();
wb.LoadFromFile(etInputFile);
//wb.LoadFromFile(ettInputFile);
wb.SaveToFile(etOutputFile, FileFormat.ET);
//wb.SaveToFile(ettOutputFile, FileFormat.ETT);
Bug SPIREXLS-3262 Fixes the issue that the chart was incorrect after converting XLSX to PDF.
Bug SPIREXLS-3317 Fixes the issue that the pagination was incorrect after converting XLS to PDF.
Bug SPIREXLS-3322 Fixes the issue that the application threw the error "ArgumentExcep" when creating multiple Workbook instances through multiple threads.
Bug SPIREXLS-3323 Fixes the issue that the content was incorrect after updating the PivotTable and then converting to PDF.
Bug SPIREXLS-3324 Fixes the issue that there were large spacing between paragraphs after converting Excel to PDF.
Bug SPIREXLS-3325 Fixes the issue that the formulas were not calculated correctly after converting XLS to PDF.
Bug SPIREXLS-3327 Fixes the issue that the application threw the error "Can't delete row because it's in array" when deleting rows.
Bug SPIREXLS-3328 Fixes the issue that there were garbled characters after converting HTML to XLSX.
Bug SPIREXLS-3329 Fixes the issue that the method CopyTheme did not copy the theme fonts.
Bug SPIREXLS-3338 Fixes the issue that the application threw the error "Input string was not in a correct format" when loading the XLSX file.
Bug SPIREXLS-3339 Fixes the issue that the content was incorrect after converting HTML to Excel.
Bug SPIREXLS-3341 Fixes the issue that the image was missing after converting XLS to PDF.
Bug SPIREXLS-3342 Fixes the issue that the application threw the error "Cannot read that as a ZpiFile" when loading the file.
Bug SPIREXLS-3345 Optimizes the time for inserting DataTable.
Click the link to download Spire.XLS 11.8.0:
More information of Spire.XLS new release or hotfix: