I have simple program
public class slidesTest {
public static void main(String[] args) throws IOException {
Presentation template = load("DonutChart.pptx");
template.save("DonutOut.pptx", SaveFormat.Pptx);
…...static Presentation load(String path) throws IOException { Presentation...(FileInputStream is = new FileInputStream(path)) { presentation = new Presentation(is);...