Robust API for document comparison across various file formats.
Identify and highlight content differences with minimal coding effort.
Highlight visible differences and uncover changes in hidden properties.
API for comparing and diff viewing across PDF, Word, Excel, source code files, and more.
Analyze changes easily with highlighted differences in a single-document report.
Accept or reject changes with visually distinct modifications for easy decision-making.
Compare text contents, as well as changes in formatting and style.
Load just the particular sections or pages of the document to be compared.
Some use cases of typical GroupDocs.Comparison operations.
compare
method. You have the flexibility to choose specific comparison settings for a more tailored analysis.// Specify the source document
using (Comparer comparer = new Comparer("source.docx"))
{
// Add one or more target documents
comparer.Add(target.docx");
// Specify comparison options
CompareOptions options = new CompareOptions() {ShowRevisions = false};
// Compare and save result
comparer.Compare("result.docx", options);
}
// Specify the source document
try (Comparer comparer = new Comparer("source.docx"))
{
// Add one or more target documents
comparer.add("target.docx");
// Specify comparison options
CompareOptions options = new CompareOptions();
options.setShowRevisions(false);
// Compare and save result
final comparer.compare("result.docx", options);
}
// Specify the source document
const comparer = new groupdocs.comparison.Comparer("source.docx");
// Add one or more target documents
comparer.add("target.docx");
// Specify comparison options
const options = new groupdocs.comparison.CompareOptions();
options.setShowRevisions(false);
// Compare and save result
comparer.compare("result.docx", options);
def run():
# Specify the source document
with groupdocs.comparison.Comparer("source.docx") as comparer:
# Add one or more target documents
comparer.add("target.docx")
# Specify comparison options
options = new groupdocs.comparison.CompareOptions()
options.setShowRevisions(false)
# Compare and save result
comparer.compare("result.docx", options)
GroupDocs.Comparison enables comparison operations within various format families.
Explore a thorough analysis of our key figures, offering comprehensive metrics and statistical insights into our accomplishments, influence, and expansion.
The API accommodates more than 50 of the most widely used file and document formats.
GroupDocs.Comparison for .NET has received over 800K downloads through the NuGet package manager.
GroupDocs.Comparison for Java has accumulated over 15K downloads from our Maven repository.
Our libraries see adoption by both individual developers and top-tier companies worldwide
GroupDocs libraries are employed by globally renowned and distinguished brands across the world.
GroupDocs.Comparison library supports the following operating systems and frameworks:
Answers to most commonly asked questions.
Incorporate document comparison capabilities into any application using our cloud-based REST API.
Work with cURL RESTful document comparison API to compare Word, Excel, PowerPoint and other popular file formats.
Add powerful document comparison capabilities in .NET applications using Cloud SDK for .NET. Compare DOCX, XLSX, PPTX and more.
Add high fidelity document comparison features to your java applications with specially designed document comparison SDK for Java.
Web-based application that enables you to perform comparisons across more than 50 popular file formats directly in your browser.