Hi,
Issue : PPT Slide containing an image is rendered incorrectly.
Attaching sample presentations with such shapes to reproduce the behaviour:
sample.zip (51.9 KB)
The generated image from code below shows incorrect snapshot of the slide.
OS : Windows 10
.NET 4
Kindly correct this for both .ppt and .ppts versions
var presentation = new Presentation(szPptxPath);
for (int i = 0; i < presentation.Slides.Count; i++)
{
var thumbnail = presentation.Slides[i].GetThumbnail(1, 1);
var imgSavePath = "./input/sample_slide_" + (i + 1) + ".png";
thumbnail.Save(imgSavePath, ImageFormat.Png);
}
Regards,
Raman