How to compare the differences between two PDF files on Windows?
Matthew Harrington
Do you know a good way to compare PDF files side-by-side and show the modifications between the two?
I'm looking for Windows software to accomplish this. It would be great if you can post both free and not-free products.
319 Answers
Try WinMerge with the xdocdiff plugin. Both are completely free. No strings attached.
A couple of the comments below suggest they don't see any difference. That means the plug-in isn't installed correctly. Here's how:
Put the files where the
xdocdiffplugin's readme file says to put them (there are two places; I won't list them here as filenames can change, etc. — read the readme)In WinMerge, go to Plugins > List and tick the "Enable Plugins" checkbox (this step is missing from the
xdocdiffreadme)In WinMerge, choose Plugins > Automatic Unpacking (this was disabled prior to step 2)
Then when comparing, you'll see what look like text files in the comparison windows.
8On Linux and Windows you can use diffpdf (which differs from diff-pdf mentioned in this thread).
On Ubuntu install using:
sudo apt-get install diffpdfSee further this UbuntuGeek page on comparing pds textually or visually.
For Windows, this Diffpdf Windows version works really great. You can download from (scroll down to Win32 static version).
11I recently found this and I love it.
Cross platform, free, and works well.
Here is a screenshot of diff-pdf in action - note that the text is not different in the PDF, but only fonts (and correspondingly, layout settings):
The call to obtain that image was:
diff-pdf --view testA.pdf testB.pdf... where are obtained by compiling this simple Latex file with pdflatex (accordingly for each pdf, see comment):
\documentclass[12pt]{article} % without mathpazo: testA.pdf
\usepackage{mathpazo} % with mathpazo: testB.pdf
\usepackage{lipsum}
\title{A brand new test}
\author{Testulio}
\begin{document}
\maketitle
\lipsum[1-3]
\end{document} 4 We also needed to compare PDFs at our company and were not satisfied with any of the solutions we found, so we made our own: i-net PDFC. It's not free, but we do offer a 30-day trial.
It's written in Java, so it's cross-platform.
What makes it special is that it compares the content as opposed to only the text (or just converting the pdf to an image and comparing the image). It also has a nice visual comparison tool.
6I wanted to do this (diff PDFs) recently with these requirements:
- ignore whitespace, line breaks, page breaks, etc.
- easily see when just a couple words that changed, not just entire lines/paragraphs.
- color diff output
I installed pdftotext, wdiff, and colordiff, available in various package managers. (With macports: sudo port install poppler wdiff colordiff)
Then:
wdiff <(pdftotext old.pdf -) <(pdftotext new.pdf -) | colordiff
Now I can see which words, nicely colored, have changed.
More details:
Variation:
Using dwdiff can produce slightly better results.
I also wanted HTML output so this tiny script makes a basic web page with a bit of CSS.
bash pc-script.bash old.pdf new.pdf > q.htlm
Then open q.html with your web browser.
pc-script.bash file:
#!/bin/bash
OLD="$1"
NEW="$2"
cat <<EOF
<html><head><meta charset="UTF-8"/><title>Changes from $OLD to $NEW</title></head><style>
.plus { color: green; background: #E7E7E7; }
.minus { color: red; background: #D7D7D7; text-decoration: line-through; }
</style><body><h1>Changes from [ <span>$OLD</span> ] to [ <span>$NEW</span> ]</h1><pre>
EOF
dwdiff -i -A best -P \ --start-delete='<span>' --stop-delete='</span>' \ --start-insert='<span >' --stop-insert='</span>' \ <( pdftotext -enc UTF-8 -layout "$OLD" - ) \ <( pdftotext -enc UTF-8 -layout "$NEW" - ) \
cat <<EOF
</pre></body></html>
EOFAn example of output can be seen here
6You can also use Adobe Acrobat X. Its has built in PDF comparison functionality under "View -> Compare Documents.
5If you are comparing text inside a pdf, then Beyond Compare does this.
Not free, but there is a thirty day trial.
1Great tool and easy to use : Compare-It v4 (from )
Compares many different kind of files. It has some built-in converters, including one for PDF files.
I've used it quite a few times with satisfying results.
Really should try this. Trial version allows comparison for unlimited time.
3Don't know it, but there is also comparePDF (not free, but a 30 day trial possible):
My proposal for best tool to compare PDFs is Kiwi PDF Comparer.
Unlike most, you can compare both text and images in the document and you also have another option to compare pages pixel-to-pixel. When comparing text it has more resolution tan everyone else because it highlights changed characters and not whole words.
It must also be the only software to do a PDF diff in which you do not have to go looking for the marked differences because you can go from one difference to another just one click.
There is a free version that works very well, but the paid version is also the cheapest one with a difference between professional applications. Being written in Java can be run on Windows, Linux and Mac OS.
Free, Not the best but...
I open both documents up and have them split screen against each other.
Not the most practical solution, but it works!
I have not seen a good DIFF package for PDF files and whilst manual and annoying, my way works!
4For a very primitive form of synchronized scrolling between two pdf files, you can use the following autohotkey script I wrote. It assumes you have two SumatraPDF windows open. Press right to go to the next page in both windows, press left for the previous page.
#IfWinActive ,SumatraPDF
Right::
orig := WinExist("A")
WinGet, outvar, List, SumatraPDF
win1 := outvar1
win2 := outvar2
WinActivate, ahk_id %win1%
sendinput {Right}
WinActivate, ahk_id %win2%
sendinput {Right}
WinActivate, ahk_id %orig%
return
Left::
orig := WinExist("A")
WinGet, outvar, List, SumatraPDF
win1 := outvar1
win2 := outvar2
WinActivate, ahk_id %win1%
sendinput {Left}
WinActivate, ahk_id %win2%
sendinput {Left}
WinActivate, ahk_id %orig%
return Here you can upload two pdf's and get back the third one which will display to you the difference between the two.
Works on all platforms, theres nothing learn or install and its free.
Another less than ideal solution:
- Convert both PDFs to Microsoft Word documents using one of the websites that do this for free.
- Use the document comparison functionality in Word.
Depending on how complex the formatting in the PDFs is and the kind of changes you're looking for, this might be OK.
2Commercial: You can use the original Adobe Acrobat Professional, for a whopping $449 :
Compare a revised PDF to an earlier version.
If you decide on Acrobat, the comments on this page are pertinent to its use.
4Diff Doc - not free.
I used this (non ideal, but for me sufficient) solution:
- Convert PDF to plain text (in my case with Adobe Reader, free app)
- Use opendiff (included with XCode, free) and see changes
pdf-diff is a Python package for this purpose.
1There is also free online .
But it highlights only text differences without images and formatting. And it's too weak in matching unchanged fragments in large files.