Search code examples
c#ms-office

PPT slides to images


I am using Office 07 PIA to convert the ppt into images in C#.

The slides are properly converted into images.

Now, while individual slides are converted into images, I was hoping for a workaround that could also convert the animations within slides too. I want to play these ppt [converted to images] in my custom application and not in MS PowerPoint.

I would really appreciate any help!

Thanks


Solution

  • It's pretty simple:

    Office 2002

    using Microsoft.Office.Core;
    using PowerPoint;
    
    ApplicationClass pptApplication = new ApplicationClass();
    
    Presentation pptPresentation = pptApplication.Presentations.Open("myfile.ppt", MsoTriState.msoFalse,
    MsoTriState.msoFalse, MsoTriState.msoFalse);
    
    pptPresentation.Slides.Item(1).Export("slide.jpg", "jpg", 320, 240);
    

    Office 2003

    using Microsoft.Office.Core;
    using Microsoft.Office.Interop.PowerPoint;
    
    ApplicationClass pptApplication = new ApplicationClass();
    Presentation pptPresentation = pptApplication.Presentations.Open("myfile.ppt", MsoTriState.msoFalse,
    MsoTriState.msoFalse, MsoTriState.msoFalse);
    
    pptPresentation.Slides.Item[1].Export("slide.jpg", "jpg", 320, 240);
    

    Image Output Quality

    pptPresentation.Slides.Item[1].Export("slide.png", "PNG", 1024, 768);