PPTX PPT ODP PDF PPTX
Aspose.Slides  for Java
PPTX

Remove Comments and Comment Authors from PPTX in Java

Use Aspose.Slides for Java to remove comments and comment authors from presentation files.

Remove Comments from PPTX via Java

Aspose.Slides for Java lets you remove comments and comment authors from PPTX presentations. Load a file with the Presentation class, iterate through ICommentAuthor objects from getCommentAuthors, clear their comments, and save the updated presentation.

Delete Annotations from PPTX - Java

Presentation presentation = new Presentation("presentation.pptx");
try {
    for (ICommentAuthor commentAuthor : presentation.getCommentAuthors())
    {
        commentAuthor.getComments().clear();
    }

    presentation.getCommentAuthors().clear();

    presentation.save("cleaned-presentation.pptx", SaveFormat.Pptx);
} finally {
    presentation.dispose();
}

How to Remove Comments from PPTX via Java

  1. Install Aspose.Slides for Java. See Installation .

  2. Load the PPTX file with the Presentation class.

  3. Iterate through the ICommentAuthor objects from getCommentAuthors.

  4. Clear each author’s comments with getComments().clear().

  5. Clear the comment author collection and save the updated PPTX file.

Other Supported Annotation Formats

You can also remove comments from other presentation formats with Java.