vote up 4 vote down star
1

Simple question: Does anyone know what CF8 uses to render HTML into PDF?

More specifically, I'd like to know the version and if there's a complete description of what styles it does/doesn't support.

(for example, it doesn't support CSS page breaking - you need to use cfdocumentitem which isn't as flexible)

flag

43% accept rate
Thanks all - if I could accept all three answers I would, but since I can't I'll go with Leigh's answer, simply because he's got the least points at the moment. – Peter Boughton May 9 at 1:14

4 Answers

vote up 9 vote down check

Yes, it does use iText. CF8 uses version 1.4:

<cfset doc = createObject("java", "com.lowagie.text.Document")>
<cfdump var="#doc.getVersion()#">
link|flag
vote up 7 vote down

The documentation for the cfdocument tag includes a listing of the supported CSS styles.

link|flag
slaps head I looked at that page, don't know how I missed those. :( – Peter Boughton May 8 at 11:44
vote up 4 vote down

From what I remember, cfdocument uses iText to generate PDFs. I don't remember the version number, but you could open up the itext.jar and view the manifest which should contain the version.

link|flag
vote up 4 vote down

CFDOCUMENT uses ICEBrowser to render the HTML and then iText to write it to PDF.

link|flag
This is actually the correct answer. – I Never Finish Anythi Aug 5 at 20:07

Your Answer

Get an OpenID
or

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