The following method works for printing notes view with the older PPT format. Is there anything similar with the newer PPTX format?
Presentation pres = new Presentation(filePath);
pres.setSlideViewType(SlideViewType.PodiumNotesView);
PdfOptions opts = new PdfOptions();
pres.save(pi.getOutFilePath(), pi.getSaveType() ,opts);