PPT to JPG's server side conversion

M

Marcin

I need to implement the following:
Upload the ppt to server and convert ppt file to jpg's on the server
side.

I did it in ASP:
Set ppt = Server.CreateObject("PowerPoint.Application")
ppt.Visible = True
Set pres = ppt.Presentations.Open(pptFile,False,False,False)
pres.Export destFolder, fileType, width, height

It is pretty stable but not fully.
I think this article explains why:
http://support.microsoft.com/defaul...port/kb/articles/Q257/7/57.asp&NoWebContent=1

Is there a better approach to my solution?
I came across PIA for Office and Office Web Components. Are these any
good for what I want to do?

Thanks in advance.
Marcin
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top