Spire.Presentation 2.2.17 starts to work with SmartArt and PPS format document

We are glad to announce a new hotfix version of Spire.Presentation Pack 2.2.17 today. In this version, our develop team make great function enhancement for our Spire.Presentation. We add new feature to Spire.Presentation to enable it to work with SmartArt and PPS format document, and we also fix bugs in this version. Please check the details as below:

New Feature:

Add new feature to enable developers to load .pps format document and save to .ppsx format document.

Add new feature to create, save, extract, and edit SmartArt.

Presentation pres = new Presentation();
Spire.Presentation.Diagrams.ISmartArt sa = pres.Slides[0].Shapes.AppendSmartArt(0,0,400,400,Spire.Presentation.Diagrams.SmartArtLayoutType.BasicBlockList);
sa.Style = Spire.Presentation.Diagrams.SmartArtStyleType.Cartoon;
foreach(object a in sa.Nodes)
sa.Nodes.RemoveNode(0);
Spire.Presentation.Diagrams.SmartArtNode node = sa.Nodes.AddNode();
sa.Nodes[0].TextFrame.Text = "aa";
node = sa.Nodes.AddNode();
node.TextFrame.Text = "bb";
node.TextFrame.TextRange.Fill.FillType = Spire.Presentation.Drawing.FillFormatType.Solid;
node.TextFrame.TextRange.Fill.SolidColor.KnownColor = KnownColor.Red;
sa.ColorStyle = Spire.Presentation.Diagrams.SmartArtColorType.GradientLoopAccent3;
pres.SaveToFile("SmartArtTest1.pptx",FileFormat.Pptx2007);

Add new feature to convert the presentation slide to EMF image.

ppt.Slides[0].SaveAsEMF("aa.emf");

Add new property of chart to enable protecting the data of the chart.

chart.IsDataProtect = true;

Bug solutions:

  • Improve the issue where the size of the generated pdf increased very larger than original .ppt document when converted .ppt to PDF.
  • Fixes the issue where legend font size has changed when converted .ppt to PDF.
  • Fixes the issue where date can't be assigned to chart data.
  • Fixes the issue where set the color of ChartDataPoint didn't work.

Free Trail to evaluate Spire.Presentation Pack 2.2.17 here:

http://www.e-iceblue.com/Download/download-presentation-for-net-now.html