Files
oam/knowledge base/compare two pdf files.md
2022-08-23 16:35:33 +02:00

785 B

Compare two PDF files

Install and use diffpdf (preferred) or diff-pdf:

sudo pacman -S diffpdf
sudo zypper install diff-pdf
diffpdf file1 file2

As an alternative:

# create a pdf with the diff as red pixels
compare -verbose -debug coder $PDF_1 $PDF_2 -compose src /tmp/$OUT_FILE.tmp

# merge the diff-pdf with background PDF_1
pdftk /tmp/$OUT_FILE.tmp background $PDF_1 output $OUT_FILE

Sources