tags:

views:

24

answers:

2

I'm using ColdFusion 8 and creating PDFs dynamically with CFDOCUMENT. What is the minimum version of Adobe Reader needed to view these PDFs?

+3  A: 

If you open up the Document Properties of the generated PDF, you'll see:

PDF Producer: iText 2.1.0 (by lowagie.com)

PDF Version: 1.4 (Acrobat 5.x)

I generate the PDF using CF9.0.1, but I guess it's the same for CF8.

Henry
Perfect. Thanks.
Al Everett
+1  A: 

Or open the PDF in a text editor and look at the first line. It will say something like

%PDF-1.4

That is the version number (the second number is always 1 less than the version of Acrobat needed).

Don't save the file as you could break it!

mark stephens