Created
April 13, 2021 19:57
-
-
Save conholdate-gists/2321805fadc51663641102e19a8abbae to your computer and use it in GitHub Desktop.
Compare PDF Files and Highlight Differences using GroupDocs.Comparison for C# API
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Compare PDF Files using C# | |
1. Compare Two PDF Files using C# | |
2. Compare Password Protected PDF Files using C# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using (Comparer comparer = new Comparer("C:\\Files\\source.pdf", new LoadOptions() { Password = "1234" })) | |
{ | |
comparer.Add("C:\\Files\\target.pdf", new LoadOptions() { Password = "5678" }); | |
comparer.Compare("C:\\Files\\result.pdf"); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using (Comparer comparer = new Comparer("C:\\Files\\source.pdf")) | |
{ | |
comparer.Add("C:\\Files\\target.pdf"); | |
comparer.Compare("C:\\Files\\result.pdf"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment