set_TransitionFps()

GifOptions::set_TransitionFps(int32_t) method

Sets transition FPS [frames/sec] The default value is 25.

void Aspose::Slides::Export::GifOptions::set_TransitionFps(int32_t value) override

Remarks

auto pres = System::MakeObject<Presentation>(u"pres.pptx");

auto gifOptions = System::MakeObject<GifOptions>();
gifOptions->set_TransitionFps(60);
pres->Save(u"pres.gif", SaveFormat::Gif, gifOptions);

See Also