The process for loading PowerPoint documents with ImageGear is very similar to that of other document formats. The following steps will enable you to view the first page of a presentation in a PowerPoint document.
Add the PowerPoint format to the list of file format filters ImageGear will use to detect formats of loaded content.
Once the desired PowerPoint file has been opened into a System.IO.Stream, the document can be loaded with the LoadDocument method. The startPageNumber and count parameters of the LoadDocument method can be used to load a select few or all of the slides in the PowerPoint document. The example below will load all available slides.
The GetPageCount method can be used to get the number of slides in a Stream that contains a valid PowerPoint document.
Once the document is loaded, the ImGearDocument will contain pages, with each one representing an entire slide.
Displaying the first one of the pages you created for the slide is easy using ImageGear’s PageView control. Simply create the control and set the Page property to that of the PowerPoint page. See the Displaying Images topic for more information displaying images with ImageGear.