I have a pptx file,It throw a ArgumentException when i using Aspose.Slides for Net to convert it to a gif file.
The version info:Aspose.Slides for Net 22.12
The demo code:
void Main()
{
using (Presentation pres = new Presentation(@"C:\清新韩范.pptx"))
{
pres.Save(@"C:\output.gif", SaveFormat.Gif, new GifOptions
{
FrameSize = new Size(960, 720),
DefaultDelay = 2000,
TransitionFps = 35
});
}
}
The demo file:
清新韩范.zip (997.6 KB)