vote up 5 vote down star
1

I need to compare large count of PDF files for it optical content. Because the PDF files was created on different platforms and with different versions of the software there are structural differences. For example:

  • the chunking of text can be different
  • the write order can be different
  • the position can be differ some pixels

It should compare the content like a human people and not the internal structure. I want test for regressions between different versions of the PDF generator that we used.

flag

27% accept rate

4 Answers

vote up 9 vote down

A partial answer would be to use pdftotext and compare the text contained.

link|flag
But this will ignore all non text informations like lines, boxes, pictures, charts, etc. I think also that it not show the optical positions of text else the structural position. – Horcrux7 Sep 28 '08 at 11:30
I agree, it is not a sufficient criteria. On the other hand it is a necessary criteria, therefore it is adequate as a unit test. – Sklivvz Sep 28 '08 at 11:35
You can always add a better unit test later! – Sklivvz Sep 28 '08 at 11:36
If there are images on pages, and you want a human-like evaluation for those, there's not much you can do but have a human compare those pages, unless you want to work on a whole new project, just as big as your current one, to try it out. – Chris Charabaruk Sep 28 '08 at 11:52
vote up 1 vote down

Never actually been in your situation before, but I've tried ExamDiff Pro to compare PDFs and it worked for me.

link|flag
vote up 0 vote down

I have used command line diff in the past and ignored certain patterns, e.g. with GNU diff 2.7:

diff --brief -I xap: -I xapMM: -I /CreationDate -I /BaseFont -I /ID --binary --text

This still has the problem that it doesn't always catch changes in generated font names.

However for your case where there can be significant differences in how the PDF is produced this will not be enough. I think your best approach would be to convert the PDF to images at a decent resolution and than do an image compare. You can use Adobe PDF Library or the solution suggested at http://stackoverflow.com/questions/75500/best-way-to-convert-pdf-files-to-tiff-files for the image creation.

link|flag
vote up 0 vote down

I think Bitmap check should work in your case. I use a automation tool to compare 2 images using bitmap check point

link|flag

Your Answer

Get an OpenID
or

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