Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Looking for Aspose .NET Slides Alternatives [closed]

I'm developing an ASP .NET web site that will allow users to view and print Microsoft PowerPoint slides.

Right away, I knew that Aspose had a product that would likely allow me to do this. What I'd like to do is look at alternatives just to say to management, "Yes, I've looked at the alternatives and they are...."

I can't seem to find any other than the open source project on Source Forge which seems to be mostly dead and I'm not even sure if it's something that would meet my needs anyway: http://b2xtranslator.sourceforge.net/

Hence my question: Is anyone aware of any alternatives to Aspose Slides .NET? Please list them if so. If you are aware there are no decent alternatives, I would find that information useful as well.

Thanks a ton.

like image 652
Dan7el Avatar asked Sep 06 '25 03:09

Dan7el


2 Answers

I once searched for such a product as well, and spent a good amount of time looking for alternatives. However, the only one I found was the dreaded COM Automation of PowerPoint, which is entirely unacceptable if you are running on a server.

There are lots of other formats to go to - you can generate HTML/javascript if you just want simple "slides". SVG /PDFs, etc. In fact, I would recommend looking at Slidy -if it fits your needs it is pretty simple to generate slide shows (and you can use some javascript for animations and such) and very easy to get user acceptance on.

But some users may insist on Powerpoint, or you may need the features it has. So if you really want to create powerpoint files through code without running an instance of PowerPoint, Aspose.Slides seems like the only choice at the moment - and it is quite full featured at that.

like image 193
Philip Rieck Avatar answered Sep 09 '25 05:09

Philip Rieck


If the ability of Aspose to generate presentations dynamically is a big part of what you are trying to do SoftArtisans PowerPointWriter would be an alternative you might want to consider. Its takes a different approach than Aspose for generating presentations. It uses a model where you have a template presentation with placeholders for data rather than building up the presentation completely in code.

Disclaimer: I work for Softartisans

like image 23
ChrisP Avatar answered Sep 09 '25 05:09

ChrisP