Spire.Presentation 2.5.21 adds new method to get all images from a specific slide

Spire.Presentation

We are glad to announce the hotfix version of Spire.Presentation 2.5.21 today. In this version, we added the new method to get all images from a specific slide and we have fixed three bugs to improve the performance of Spire.Presentation.

New Feature:

Add new method to get all images from a specific slide.

foreach(IShape s in ppt.Slides[0].Shapes)
 {
 if(s is SlidePicture)
 {
 SlidePicture ps = s as SlidePicture;
 ps.PictureFill.Picture.EmbedImage.Image.Save(string.Format("{0}.png",i));
 i++;
 }
 if(s is PictureShape)
 {
 PictureShape ps = s as PictureShape;
 ps.EmbedImage.Image.Save(string.Format("{0}.png",i));
 i++;
 }
 }

Bug Solutions:

  • Fixes the issue that cannot open the underlying data when insert 25 columns of data into the chart.
  • Fixes the issue that caused error when trying to copy a Slide and insert on the same presentation.
  • Improves the quality of images converted from PPT.

To enjoy a better experience of Spire.Presentation 2.5.21, please download from:

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