Hi,
Which version information do you want? As far as PowerPoint presentation version is concerned, you will have to use Aspose.Slides namespace for working with PPT (PowerPoint 2003) and Aspose.Slides.Pptx for working with PPTX (PowerPoint 2007). Here is how you can render a ppt / pptx slide to image:
1) For PPTX:
PresentationEx pres = new PresentationEx("issuesource.pptx");
SlideEx sld = pres.Slides[0];
Bitmap btmp = sld.GetThumbnail(1f, 1f);
btmp.Save("issuesource.jpg", ImageFormat.Jpeg);
2) For PPT:
Presentation pres = new Presentation("issuesource.pptx");
Slide sld = ppt.GetSlideByPosition(1);
Bitmap btmp = sld.GetThumbnail(1f, 1f);
btmp.Save("issuesource.jpg", ImageFormat.Jpeg);