up vote 0 down vote favorite
share [g+] share [fb]

My program downloads a PDF file from a source location every day. When I see the binary text of the PDF file in Notepad, I find that sometimes the PDF file has the string <!-FTCACHE-1-> at the end. Sometimes this word is missing from the PDF file.

My program downloads this PDF daily and compares it with the previous day's PDF file using the Windiff binary comparison.

99% of the time, Windiff reports differences in the PDF file just because one PDF contains the string <!-FTCACHE-1-> at the end.

Does anyone knows what the reason behind this is?

Thanks, Praveen

link|improve this question

0% accept rate
feedback

2 Answers

"FT" could be FreeType, the open source font engine. The comment probably comes from the software that generates the PDF. If you can somehow identify that, you could (assuming it is open source) perhaps take a look through it and see what causes it to emit the comment.

FreeType has a source folder dedicated to caching, the root source file there is called ftcache.c. It doesn't do a lot though, just #includes (!) the other source files.

Googling on the string you see, reveals several more or less random PDF:s that seem to contain it.

link|improve this answer
I found something with further analysis that if I delete this string from the file and check the file properties then Fast Web Access becomes true. If I again add it then Fast Web Access becomes false. So is there something in downloading the file that sometime Fast Web Access is true or false? – user85594 Apr 3 '09 at 9:34
feedback

The application that generates the PDF file has a bug, the FTCACHE tag should not be there, it is not a valid PDF construct. Its presence actually damages the PDF file, it invalidates the FastWebView feature in the PDF file, as you have seen it. It is safe to remove it before comparing the files.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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