Diff Tool For Mac Os

Active3 years, 6 months ago

I am looking for an application to compare two PDF files.

Application must:

FileMerge (which has been mentioned here before) is part of the Developer Tools (a 200mb download from the Developer site, once you register as a free online-only developer), and its mission is to compare two files and then merge the differences into one.

  • be able to highlight differences between the two documents
  • be mac-compatible as I will be using it on a mac
  • be free, I do not want to spend any money

I will be mostly using this for comparing the new versions of the apple developer license agreements (since I am an apple developer who is too lazy to read a 40+ page document every time a minor change is made)

The application does not need to be from the App Store, nor does it need to need to be official (some knockoff from GitHub will be fine as long as it does not contain any viruses or bundled crapware) all I need is for it to do what it is intended to do (compare PDF's) very well.

If you would like to go above and beyond, free to take on the challenge of developing the application yourself (or modifying an existing one).

I won't use this application very often and will accept it in any of the following formats:

  • Mac app store app
  • Java app
  • Web app
  • AppleScript file (I will need to see the source code)
  • Automator workflow
  • basically anything that will run on Mac OS X Yosemite (non-beta) and perform the intended task effectively
TomFiles
5,8538 gold badges28 silver badges56 bronze badges
DeveloperACEDeveloperACE
2891 gold badge2 silver badges11 bronze badges

Mac Merge Tool

5 Answers

You can use DiffNow:

  • it's free
  • web-app diff tool
  • works via pasting text; uploading files; using URLs

The only limitation is that files must be < 2048kb.

The sample on their site (first pdf vs. second pdf):

Tom
5,8538 gold badges28 silver badges56 bronze badges
ᔕᖺᘎᕊᔕᖺᘎᕊ
4,6236 gold badges29 silver badges59 bronze badges

compare (command from ImageMagick)

If you want to compare the visual appearance of page 4 of a.pdf with page 6 of b.pdf, you can use ImageMagick's command line tool compare. Here is a variation of commands to try:

(ImageMagick's frame/page counting is zero-based; so '[3]' means 'page 4'...) This will create 'delta' documents, where each pixel that is different between the pages is painted in red:

  1. The first variant keeps a pale version of a.pdf as a background image to the page.
  2. The second variant uses a resolution of 300 PPI (instead of the default 72 PPI).
  3. The third variant creates a white+red delta only (leaving away the pale background).
  4. The fourth variant does mark as red only those pixels which have a color difference of more than 5%.

It should be noted, that the comparison only works if the respective page sizes for the compared files are exactly identical.

diffpdf (GUI application)

DiffPDF is a GUI application which can process 2 or 3 PDF input and show the differences:

  1. There is a mode that compares text content only, highlighting word and character differences.
  2. There is another mode that compares visual differences and highlights them.

The home page only offers a paying Windows version now, but earlier versions were free. You can grab the source code e.g. from Debian, it includes compilation instructions for OS X.

unor
5,1334 gold badges28 silver badges85 bronze badges
Kurt PfeifleKurt Pfeifle

DiffPDF nowadays is an paid software for Windows only, but it was previously free and also available for OS X. You can still download such a previous version.

It allows both visual and textual comparison.

Michael SchmidMichael Schmid

When comparing PDF files, you have the choice between:

  • comparing the contents (i.e. the actual text)
  • comparing the pages as a whole (visual comparison).

While you might be looking for the first type of comparison, I wanted to offer a way to compare two PDF files page-by-page.

As I've had this requirement regularly in the past, and couldn't find the necessary software to perform the comparison, I wrote my own and made it available on GitHub. It's called pyPdfCompare and is available free of charge.

It runs fine on OS X and Windows but does require you to install Python 3, Ghostscript and ImageMagick. Furthermore, you'll need to perform a pip install for the libraries it uses.

It may be a little too technical and/or not exactly what you were looking for, but I wanted to offer the option anyway, for the sake of completeness.

Tom
5,8538 gold badges28 silver badges56 bronze badges
ƘɌỈSƬƠƑƘɌỈSƬƠƑ

For your use case, comparing the text and discarding all formatting and non-text elements would work well. You can run the pdftotext utility on each file and then a text comparison tool on the result. On OS X, you can install pdftotext from various free software distribution channels such as Brew or MacPorts, it's part of the poppler package.

Cas Cremers's pdfdiff.py script automates the running of pdftotext (which needs to be installed separately) and of a diff viewer (ditto).

The result is similar to DiffNow cited by ᔕᖺᘎᕊ, I think they use pdftotext internally and plug the output into a text diff webapp.

Community
GillesGilles
3,9013 gold badges23 silver badges42 bronze badges

Not the answer you're looking for? Browse other questions tagged osxpdfcomparison or ask your own question.

Active1 year, 11 months ago

Are there any Binary Diff tools for Mac OS X with a GUI? There are a gazillion text-based diff tools, but I need to compare two binary files. Essentially two Hex Editors with Dec/Hex View next to each other (the binary files are a custom file format, so not images or anything that has a more specialized diff tool)

Michael StumDiffMichael Stum
121k103 gold badges369 silver badges510 bronze badges

6 Answers

there is Ellié Computing Merge (http://www.elliecomputing.com) (NB: I work for ECMerge).it can compare arbitrarily large files with usual Hex+ASCII views and side by side visual diff.it works on mac and linux/windows as well

armelarmel
2,0841 gold badge16 silver badges24 bronze badges

I just discoverd Hex Fiend – love at first sight! Open both binary files then do File > Compare x and y or Shift+cmd+D

squarefrog
3,6284 gold badges24 silver badges57 bronze badges

Mac Os Compare Files

Stefan SchmidtStefan Schmidt
2,7101 gold badge16 silver badges19 bronze badges

You could store the hex of each binary in temp files, then compare them with diff. This would give you the visual hex difference.

xxd creates a hex dump, and we're telling it to print one byte per line, then cut splits on space and compares the correct column

you could also use od instead of xxd

devios1Tool
20.5k36 gold badges131 silver badges224 bronze badges
MatthewMatthew
2,5802 gold badges18 silver badges22 bronze badges

Macos File Comparison

justinjustin
98.4k12 gold badges162 silver badges217 bronze badges

Maybe 'HexEdit by Lane Roathe', wxHexEditor or UltraEdit

VladislavVladislav
1921 gold badge3 silver badges14 bronze badges

My go-to is for stuff like this is 010 Editor. It has a very customizable hex bin-diff, configurable min match length, synchronized scrolling, and much more.

Beyond Compare 4 does a pretty good job, especially if you have multiple binary files to compare. However, it's matching isn't obviously configurable and can be wonky, depending on the use-case.

jsearsjsears
3,2311 gold badge27 silver badges31 bronze badges

Macos Diff

Not the answer you're looking for? Browse other questions tagged macosbinarydiff or ask your own question.