Finds differences between two PDF documents:
The script is written in Python 3, and it relies on the pdftotext
program.
libxml2 >= 2.7.0, libxslt >= 1.1.23, poppler
sudo apt-get install python3-lxml poppler-utils
brew install libxml2 libxslt poppler
From PyPI:
pip install pdf-diff
From source:
sudo python3 setup.py install
Turn two PDFs into one large PNG image showing the differences:
pdf-diff before.pdf after.pdf > comparison_output.png
To deploy:
python3 -m pip install --user --upgrade setuptools wheel twine
python3 setup.py sdist bdist_wheel
python3 -m twine upload dist/*