spire.presentation 3.8.4今天正式发布了,该版本支持设置项目符号样式为图片并修复了转换、合并ppt时出现的漏洞。具体更新内容如下:
新功能:
- 支持设置项目符号样式为图片。
presentation ppt = new presentation();
ppt.loadfromfile(@"d:\test.pptx");
iautoshape shape = ppt.slides[0].shapes[0] as iautoshape;
textparagraph tp = shape.textframe.paragraphs[0];
tp.bullettype = textbullettype.picture;
image bulletpicture = image.fromfile(@"d:\bulletpicture.png");
tp.bulletpicture.embedimage = ppt.images.append(bulletpicture);
ppt.savetofile(@"d:\result.pptx", fileformat.pptx2010);
问题修复:
- 修复了转换ppt到svg时图表标签样式不正确的问题。
- 修复了合并多个ppt文件后结果文档损坏的问题。
- 修复了母版幻灯片中包含“slide number placeholder”的形状不能被锁住的问题。
获取最新版的spire.presentation 3.8.4,请点击:
http://www.e-iceblue.cn/downloads/spire-presentation-net.html