Dear Sir / Madam
We have tried to open and save a powerpoint presentation with the Shape - "Action Buttons: Forward or Next", and found that the action button was converted to a white box, do know how we can preserve the action button shape?
The sample code and powerpoint was attached for your investigation.
Thank you for your help in advance!
Version used: Syncfusion.Presentation.AspNet (Version: 16.4.0.52)
using (MemoryStream memStreamPPT = new MemoryStream())
using (MemoryStream memStreamPPTAdmin = new MemoryStream())
{
memStreamPPT.Write(pptData, 0, pptData.Length);
memStreamPPT.Position = 0;
Syncfusion.Presentation.IPresentation pptxDoc = Syncfusion.Presentation.Presentation.Open(memStreamPPT);
pptxDoc.Save(memStreamPPTAdmin);
pptxDoc.Close();
memStreamPPTAdmin.Position = 0;
byte[] pptDataAdminModified = memStreamPPTAdmin.ToArray();
return pptDataAdminModified;
}
Attachment:
upload_557cff7c.7z