Do you guys have some .Net libraries which has ability to convert a PowerPoint Presentation file into images?
Click to open the Save as Type drop-down menu. Select one of the following image formats for your slide. Click Save. Review the PowerPoint dialog box, and select Just This One to save your selected slide as an image.
Export entire slides as images. Open the PPT file and select File > Save As. In the Save As window, select an image format from the Save As Type drop-down list. Select All Slides to export the entire PPT file or Just This One to export the selected slide.
Using add reference to Microsoft.Office.Interop.PowerPoint.dll
. To convert PowerPoint slides to PNG images:
PowerPoint.Presentation pptPresentation = pptApplication.Presentations.Open2007(FILE);
foreach (PowerPoint.Slide pptSlide in pptPresentation.Slides)
{
pptSlide.Export(NEWNAME, "PNG", 1024, 768);
}
do check PPT slides to images
https://stackoverflow.com/questions/733347/is-it-possible-to-convert-powerpoint-to-images-programatically
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With