Extracting information about all slide backgrounds The API allows you to extract information about all the slide backgrounds in a Powerpoint document as shown in the following code sample using method getBackgroundImage() of PresentationSlide.getImageFillFormat().
advanced_usage.add_watermarks_to_presentations.PresentationGetSlideBackgroundsInformation
PresentationLoadOptions loadOptions = new PresentationLoadOptions(); // Specify an absolute or relative path to your document. Ex: "C:\\Docs\\presentation.pptx" Watermarker watermarker = new Watermarker("presentation.pptx", loadOptions); PresentationContent content = watermarker.getContent(PresentationContent.class); for (PresentationSlide slide : content.getSlides()) { if (slide....the slide backgrounds in a PowerPoint document as shown in the...background images that belong to a PowerPoint document as shown in the...