Menu

Count Number of Slides

Shoaib

Apache POI SL

SlideShow ppt = new SlideShow(new FileInputStream("presentation.ppt"));
System.out.println("Total Slides Count: " + ppt.getSlides().length);

Aspose.Slides

//Instantiate a PresentationEx object that represents a PPTX file
Presentation pres = new Presentation("data/presentation.pptx");

System.out.println("Total Slides in Count: " + pres.getSlides().size());

Download Source Code


Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.