Hi,
When saving a ppt document as ppt, the animations are getting damaged, when saved as pptx they remain intact.
Aspose.Slides version 21.4 .Net2.0
The code is:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Aspose.Slides;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Aspose.Slides.Presentation PPT1 = new Aspose.Slides.Presentation(@“D:\Temp\Test.ppt”);
PPT1.Save(@“D:\Temp\Test2.ppt”, Aspose.Slides.Export.SaveFormat.Ppt);
PPT1.Save(@“D:\Temp\Test3.pptx”, Aspose.Slides.Export.SaveFormat.Pptx);
}
}
}
Files.zip (131.5 KB)
A sample file is attached.
Thanks,
Giuseppe