Skip to content

Instantly share code, notes, and snippets.

@GroupDocsGists
Last active September 19, 2019 11:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GroupDocsGists/457b98e1aee333ee8fe08c25d88bd823 to your computer and use it in GitHub Desktop.
Save GroupDocsGists/457b98e1aee333ee8fe08c25d88bd823 to your computer and use it in GitHub Desktop.
// For complete examples and data files, please go to https://github.com/groupdocs-comparison/GroupDocs.Comparison-for-.NET
DetailLevel zonesDetailLevel = DetailLevel.High;
ComparisonSettings settings = new ComparisonSettings();
ICompareResult compareResult = null;
Comparer comparer = new Comparer();
compareResult = comparer.Compare("source path/file", "target path/file", settings);
string resultPath = @"D:\outputpath";
if (!Directory.Exists(resultPath)) Directory.CreateDirectory(resultPath);
compareResult.SaveImages(resultPath);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment