Use GroupDocs.Comparison to analyze MS PowerPoint presentations
- Install package from Maven
- Provide new comparer along with PPTX path
- Append PPTX presentations for comparison
- Get detailed report
Use GroupDocs.Comparison to analyze MS PowerPoint presentations
// Check files from your hard drive for differences or similarities
// Create a Comparer object by specifying the initial file
try (Comparer comparer = new Comparer("main.pptx")
{
// Include additional files to comparing
comparer.add("version1.pptx");
comparer.add("version2.pptx");
comparer.add("version3.pptx");
// Get the report with the specified name as the result
final Path resultPath = comparer.compare("full_report.pptx");
System.out.println("\nDocuments compared successfully.");
}
<dependencies>
<dependency>
<groupId>com.groupdocs</groupId>
<artifactId>groupdocs-comparison</artifactId>
<version>24.8</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>repository.groupdocs.com</id>
<name>GroupDocs Repository</name>
<url>https://repository.groupdocs.com/repo/</url>
</repository>
</repositories>
Download GroupDocs.Comparison for free or get a trial license for full access!
Explore documentation, code samples, and community support to enhance your experience.
The GroupDocs.Comparison for Java software allows to detect differences at MS PowerPoint PPTX presentations producing detailed and precise reports without extra efforts.