Spire.Presentation 8.12.2 supports converting master pages to images

2023-12-13 10:04:24

We are excited to announce the release of Spire.Presentation 8.12.2. This version supports converting master pages to images. Besides, it also enhances the conversion from PowerPoint to PDF. Moreover, it fixes the issue that the effect was incorrect after changing the position of the chart label. More details are listed below.

Here is a list of changes made in this release

Category ID Description
New feature SPIREPPT-2397 Supports converting master pages to images.
Presentation ppt = new Presentation();
ppt.LoadFromFile("1.pptx");
for (int i = 0; i < ppt.Masters[0].Layouts.Count; i++)
{
Image image = ppt.Masters[0].Layouts[i].SaveAsImage();
String fileName = String.Format("{0}.png", i);
image.Save(fileName, System.Drawing.Imaging.ImageFormat.Png);
}
ppt.Dispose();
Bug SPIREPPT-2394 Fixes the issue that the content layout was incorrect when converting PPT to PDF.
Bug SPIREPPT-2396 Fixes the issue that the effect was incorrect after changing the position of chart labels.
Click the link below to download Spire.Presentation 8.12.2:
More information of Spire.Presentation new release or hotfix: