Hi,
I use this snippet to open and resave the ppt file on Linux.
using (var Presentation = new Presentation(inFile))
{
SaveFormat format = SaveFormat.Ppt;
Presentation.Save(tempFile, format);
}
There is a chart sh…... using (var presentation = new Presentation(inFile)) { SaveFormat...format = SaveFormat.Ppt; presentation.Save(tempFile, format);...