User-501389187 posted
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