aspose-free-consulting / projects

The starting point for Aspose free consulting projects
5 stars 5 forks source link

I want to create/build online ppt editor in our reactjs app #377

Closed Murtaza-arif closed 2 months ago

Murtaza-arif commented 4 months ago

I wanted to integrate a online ppt editor in our reactjs application. Can anyone suggest how I can use aspose in our application.

Or anyone suggest a third party or open source for a online ppt viewe and editor as a sdk .

andreypotapovaspose commented 4 months ago

@Murtaza-arif, With the Aspose.Slides library, you can convert presentation slides into SVG images and then edit them in your web app using an SVG editor. For example, the following code snippet in C# shows you how to convert PPTX to SVG:

using var presentation = new Presentation("sample.pptx");

for (var i = 0; i < presentation.Slides.Count; i++)
{
    using var imageStream = File.OpenWrite($"image_{i + 1}.svg");
    presentation.Slides[i].WriteAsSvg(imageStream);
}

You can do the same in Java, Python, or another programming language.