spire.office 4.1.4今天正式发布了,该版本添加了一些新功能,例如spire.xls开始支持.net core并添加了新属性支持给checkbox添加cell link;spire.presentation支持在幻灯片之间拷贝形状;spire.doc支持将word文档转换到pcl格式。此外,本次更新还包含了很多问题修复,详细内容如下。
该版本涵盖了最新版的spire.doc, spire.pdf, spire.xls, spire.presentation, spire.dataexport,spire.barcode, spire.docviewer, spire.pdfviewer, spire.officeviewer,spire.email。
- spire.doc.dll v7.1.20
- spire.pdf.dll v5.1.36
- spire.xls.dll v9.1.23
- spire.email.dll v2.1.5
- spire.docviewer.forms.dll v4.1.6
- spire.pdfviewer.forms.dll v4.1.14
- spire.pdfviewer.asp.dll v4.1.14
- spire.presentation.dll v4.1.25
- spire.spreadsheet v3.1.8
- spire.officeviewer.forms.dll v4.1.4
- spire.dataexport.dll v4.1.0
- spire.dataexport.resourcemgr.dll v2.1.0
- spire.common.dll v2.1.22
- spire.license.dll v1.3.7
- spire.barcode.dll v3.1.1
https://www.e-iceblue.cn/downloads/spire-office-net.html
spire.xls
新功能:
- 添加属性支持给checkbox添加cell link。
icheckbox.linkedcell
问题修复:
- 修复了加载excel抛异常的问题。
- 修复了合并多个excel后,将合并的文件转换为pdf抛异常的问题。
- 修复了将包含图片组的excel文件和另外一个文件合并后,将合并的文件转换为pdf抛异常的问题。
- 修复了保存xlsb到.xls后,多出空白列的问题。
spire.spreadsheet
问题修复:
- 修复了添加的文本水平位置不一致的问题。
spire.presentation
新功能:
- 支持在幻灯片之间拷贝形状。
presentation presentation = new presentation();
presentation.loadfromfile(input);
islide sourceslide = presentation.slides[0];
islide targetslide = presentation.slides[1];
targetslide.shapes.addshape((shape)sourceslide.shapes[0]);
presentation.savetofile(output, fileformat.pptx2013);
问题修复:
- 修复了拆分单元格后行高不正确的问题。
spire.pdfviewer
问题修复:
- 修复了查看pdf文件, 内存溢出的问题。
spire.pdf
问题修复:
- 修复了提取pdf文本,程序抛出异常的问题。
- 修复了转换pdf到image之后,加粗文本显示不正确的问题。
- 修复了转换pdf到image之后,内容空白的问题。
- 修复了转换pdf到xps之后,内容空白的问题。
- 修复了隐藏的表单域,使用field.visible获取出来仍是true的问题。
spire.doc
新功能:
- 支持转换word文档到pcl文档。
document doc = new document(inputfile);
doc.savetofile("result.pcl", spire.doc.fileformat.pcl);
问题修复:
- 修复了当转换word到图片时应用程序挂起的问题。
- 修复了查找包含在形状里文本失败的问题。
- 修复了在转换word到pdf时表格行之间多出额外空白段落的问题。
- 修复了在转换word到pdf时背景图片不显示的问题。
- 修复了合并word文档时一些内容的格式不正确的问题。
- 修复了在转换word到pdf/images时图片位置不正确的问题。