Hi,
Issue : PPT Slide containing black shape renders as white.
Attaching sample presentations with such shapes to reproduce the behaviour:
sample.zip (21.8 KB)
The generated image from code below shows empty shape in place of black shape
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