Spire.Presentation | 新闻
|
028-81705109
|
|
微信扫一扫
|

在线编辑/WebAPI

Spire.Presentation hotfix version 4.4.3今天正式发布了,该版本添加了两个新属性:SlidePicture.IsCropped 和Presentation.IsNoteRetained分别支持判断图片是否被裁剪以及设置在转换PPT到SVG时是否保留备注。同时,它还优化了PPT转PDF的效果。具体更新内容如下: 新功能: 添加了slidePicture.IsCropped属性来判断图片是否被裁剪。 foreach (IShape shape in ppt.Slides[0].Shapes) { if (shape is SlidePicture) { SlidePicture slidepicture = (SlidePicture)shape; bool reault = slidepicture.IsCropped; } } 添加了presentation.IsNoteRetained属性来设置在转换PPT到SVG时是否保留备注。 Presentation ppt = new Presentation(); ppt.LoadFromFile(inputPPT); ppt.IsNoteRetained…
Spire.Presentation hotfix version 4.3.19今天正式发布了,该版本主要修复了一些在PPT转图片和PDF时出现的问题,具体修复内容如下。 问题修复: 修复了转换PPT到图片结果不正确的问题。 修复了给ChartData赋值时程序抛异常的问题。 修复了转PPT到图片时抛异常的问题。 修复了转PPT到PDF图表标签丢失的问题。 修复了转PPT到图片数据格式改变的问题。 修复了修改图表数据后图表更新不正确的问题。 修复了转PPT到PDF内容位置改变的问题。 修复了转PPT到PDF图片左右互换的问题。 获取Spire.Presentation 4.3.19,请点击: https://www.e-iceblue.cn/Downloads/Spire-Presentation-NET.html
Spire.Presentation 4.3.14今天正式发布了,该版本改善了PrinterSettings接口,并修复了PowerPoint转PDF和图片出现的问题。具体信息如下。 新功能: 改善了打印接口。 Presentation ppt = new Presentation(); ppt.LoadFromFile(inputfile); PresentationPrintDocument document = new PresentationPrintDocument(ppt); //Set print task name document.DocumentName = "print task 1"; document.Print0rder = Order.Horizontal; document.SlideFrameForPrint = true; document.GrayLevelForPrint = true; document.SlideCountPerPageForPrint = PageSlideCount.Three;…
Spire.Presentation 4.3.9今天正式发布。新版本添加了给shape中指定的段落添加文字动画这一新功能,并且修复了转换PPT和加载PPT时出现的问题,详情如下: 新功能: 支持给shape中指定的段落添加文字动画 Presentation ppt = new Presentation(); ppt.LoadFromFile("test.pptx"); IAutoShape shape = (IAutoShape)ppt.Slides[0].Shapes[0]; AnimationEffect animation = shape.Slide.Timeline.MainSequence.AddEffect(shape, AnimationEffectType.Fly); animation.SetStartEndParagraphs(2, 3); IAutoShape shape2 = (IAutoShape)ppt.Slides[0].Shapes[1]; AnimationEffect animation2 = shape.Slide.Timeline.MainSequence.AddEffect(shape2, AnimationEffectType.FadedZoom); animation2.SetStartEndParagraphs(0, 0); ppt.SaveToFile("result.pptx", FileFormat.Pptx2010); ppt.Dispose(); 问题修复:…