Hi
Just opening and saving the PPTX to another file causes error in subject:
Easy to identify: unknown container in the slide
Thank you.
here are two files:
using (var stream = new FileStream(ppt, FileMode.Open))
{
var presentation = new Aspose.Slides.Presentation(stream, loadOptions);
try
{
WriteLog("Saving PowerPoint: " + outPpt, LogType.info);
presentation.Save(outPpt, Aspose.Slides.Export.SaveFormat.Pptx);
WriteLog("PowerPoint saved !", LogType.success);
}
catch (Exception ex)
{
WriteLog("NormalizingPPT error saving pptx: " + ex.Message, LogType.error);
}
}