spire.office 4.6.3 今天正式发布了。该版本只是包含了spire.presentation的最新更新,例如支持设置形状的排列次序,修复了powerpoint转图片的问题。更多详细信息如下。
版本信息:
- spire.doc.dll v7.6.13
- spire.pdf.dll v5.6.32
- spire.xls.dll v9.6.11
- spire.presentation.dll v4.6.6
- spire.email.dll v2.4.11
- spire.docviewer.forms.dll v4.5.4
- spire.pdfviewer.forms.dll v4.6.4
- spire.pdfviewer.asp.dll v4.6.4
- spire.spreadsheet v3.6.7
- spire.officeviewer.forms.dll v4.6.3
- spire.barcode.dll v3.5.0
- spire.dataexport.dll v4.1.9
- spire.dataexport.resourcemgr.dll v2.1.0
- spire.common.dll v2.6.11
- spire.license.dll v1.3.7
https://www.e-iceblue.cn/downloads/spire-office-net.html
spire.presentation
新功能:
- 支持了设置形状的排列次序。
presentation ppt = new presentation(input);
iautoshape shape = ppt.slides[0].shapes[0] as iautoshape;
shape.setshapearrange(shapearrange.bringforward);
ppt.savetofile("result.pptx", fileformat.pptx2013);
问题修复:
- 修复了转换ppt到图片时多出字符的问题。
- 修复了加载一个pptx文档抛出“未将对象引用到对象的实例”的错误。