Convert PowerPoint slides into images

Rate It (1)

Last post 06-25-2009 7:50 AM by Subhasis.chanda. 1 replies.

Sort Posts:

  • Convert PowerPoint slides into images

    06-24-2009, 5:58 AM

    Hi
    Experts,

    How to convert PowerPoint slides into images (C#) without using Microsoft Primary Interop Assemblies (PIAs) amd any other third party dll / component

    string file = Server.MapPath("~/subhasis.ppt");
    Stream stream = new FileStream(file, FileMode.Open, FileAccess.Read, FileShare.Read);
    if (!stream.CanRead)
    {
         Literal1.Text = "Sorry ! Your presentation can't read.";
    }

    StreamReader reader = new StreamReader(stream);
    Literal1.Text = reader.ReadToEnd();

    Then what  ??????????


    Thanks in advance

    Subhasis Chanda

    Thanks!
    Subhasis Chanda
    Please "Mark as Answer" if this post helps you
  • Re: Convert PowerPoint slides into images

    06-25-2009, 7:50 AM

    Any Idea ??

    Thanks!
    Subhasis Chanda
    Please "Mark as Answer" if this post helps you
Page 1 of 1 (2 items)