So I am ultimately attempting to use Aspose/c++ to:
- Open an existing template PPTX
- Make a copy of the last slide.
- Replace the placeholder text and imagery with updated stuff.
- Re-export (as PPT, PPTX, PDF, etc)
Everything appears to be working fine - except that I keep getting extraneous blank “Date” and “Footer” entries added to the bottom of my slides. I get this behavior even if all I do is open and then save my PPTX template file.
auto pptPresentation = System::MakeObject<Aspose::Slides::Presentation>System::String::FromUtf8(myTemplatePath));
pptPresentation->Save(System::String::FromUtf8(workingPptFile), Aspose::Slides::Export::SaveFormat::Pptx);
Any idea how I can prevent this behavior or what I am doing wrong?
Thanks